Add #include llvm-config.h to Locale.cpp which depends on LLVM_ON_WIN32.

Source code was assuming that llvm-config.h would be included somehow but
up to r247253 that added #include "llvm/Support/Compiler.h" to StringRef.h
the config file was not actually included. The inclusion of llvm-config.h
caused a change of behaviour in tools/clang/test/Frontend/source-col-map.c:
previously it would output the original UTF-8 but now it outputs <U+03B1>.

llvm-svn: 247409
This commit is contained in:
Yaron Keren 2015-09-11 13:22:47 +00:00
parent d67bb26642
commit 102e3ce5b3
1 changed files with 1 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#include "llvm/Config/llvm-config.h"
#include "llvm/Support/Locale.h" #include "llvm/Support/Locale.h"
#include "llvm/Support/Unicode.h" #include "llvm/Support/Unicode.h"