[llvm-commits] [llvm] r145215 - /llvm/trunk/include/llvm/Support/Valgrind.h

Dylan Noblesmith nobled at dreamwidth.org
Sun Nov 27 16:49:02 PST 2011


Author: nobled
Date: Sun Nov 27 18:49:01 2011
New Revision: 145215

URL: http://llvm.org/viewvc/llvm-project?rev=145215&view=rev
Log:
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.

Modified:
    llvm/trunk/include/llvm/Support/Valgrind.h

Modified: llvm/trunk/include/llvm/Support/Valgrind.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Valgrind.h?rev=145215&r1=145214&r2=145215&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Valgrind.h (original)
+++ llvm/trunk/include/llvm/Support/Valgrind.h Sun Nov 27 18:49:01 2011
@@ -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)





More information about the llvm-commits mailing list