JITEventListener.h: Use llvm-config.h instead of config.h.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 13 Dec 2012 15:03:38 +0000 (15:03 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 13 Dec 2012 15:03:38 +0000 (15:03 +0000)
llvm-svn: 170129

llvm/include/llvm/Config/llvm-config.h.cmake
llvm/include/llvm/Config/llvm-config.h.in
llvm/include/llvm/ExecutionEngine/JITEventListener.h

index 3944292..fbc3040 100644 (file)
 /* Installation prefix directory */
 #cmakedefine LLVM_PREFIX "${LLVM_PREFIX}"
 
+/* Define if we have the Intel JIT API runtime support library */
+#cmakedefine LLVM_USE_INTEL_JITEVENTS 1
+
+/* Define if we have the oprofile JIT-support library */
+#cmakedefine LLVM_USE_OPROFILE 1
+
 /* Major version of the LLVM API */
 #cmakedefine LLVM_VERSION_MAJOR ${LLVM_VERSION_MAJOR}
 
index 9489dfe..af3a324 100644 (file)
 /* Installation prefix directory */
 #undef LLVM_PREFIX
 
+/* Define if we have the Intel JIT API runtime support library */
+#undef LLVM_USE_INTEL_JITEVENTS
+
+/* Define if we have the oprofile JIT-support library */
+#undef LLVM_USE_OPROFILE
+
 /* Major version of the LLVM API */
 #undef LLVM_VERSION_MAJOR
 
index 7bd1fad..3aa014e 100644 (file)
@@ -15,7 +15,7 @@
 #ifndef LLVM_EXECUTION_ENGINE_JIT_EVENTLISTENER_H
 #define LLVM_EXECUTION_ENGINE_JIT_EVENTLISTENER_H
 
-#include "llvm/Config/config.h"
+#include "llvm/Config/llvm-config.h"
 #include "llvm/Support/DataTypes.h"
 #include "llvm/Support/DebugLoc.h"
 #include <vector>