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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170129 91177308-0d34-0410-b5e6-96231b3b80d8

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

index 39442926dc9bc87e7d7258755182eba22778c748..fbc3040dd2ef5bb6fcc81793ece8fc6bba281e10 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 9489dfe01633fc576d2867d2c58b2c5c788960cc..af3a324855258dbf827bbcc0ef1c48d5c6565123 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 7bd1fad9341454d6e55899fcaed694e166df78c7..3aa014ee326a8a09aff970e84b613ea99196060c 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>