diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-11-28 00:49:01 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-11-28 00:49:01 +0000 |
commit | 38831b014a57718a1755ab1c3c1df08679183dfb (patch) | |
tree | 002c5a6a21d038f337270d4870b05bb4c90dd011 /include/llvm | |
parent | 08b73a30bbb6407c7b48a734a29f65f4c8ddd782 (diff) | |
download | external_llvm-38831b014a57718a1755ab1c3c1df08679183dfb.zip external_llvm-38831b014a57718a1755ab1c3c1df08679183dfb.tar.gz external_llvm-38831b014a57718a1755ab1c3c1df08679183dfb.tar.bz2 |
use llvm-config.h in public header
The config.h file's macros collide with other projects that include
LLVM and shouldn't get exported.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Support/Valgrind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Valgrind.h b/include/llvm/Support/Valgrind.h index e091eb7..e147647 100644 --- a/include/llvm/Support/Valgrind.h +++ b/include/llvm/Support/Valgrind.h @@ -17,7 +17,7 @@ #define LLVM_SYSTEM_VALGRIND_H #include "llvm/Support/Compiler.h" -#include "llvm/Config/config.h" +#include "llvm/Config/llvm-config.h" #include <stddef.h> #if LLVM_ENABLE_THREADS != 0 && !defined(NDEBUG) |