Fix copy paste comment
[oota-llvm.git] / lib / ExecutionEngine / CMakeLists.txt
index 58caae830f4964a4b94f2ea81403f6177c2526e9..fae5bb900b90f9890d7cadf900d363c4c02347b9 100644 (file)
@@ -1,10 +1,21 @@
+
+
 add_llvm_library(LLVMExecutionEngine
   ExecutionEngine.cpp
   ExecutionEngineBindings.cpp
+  JITEventListener.cpp
+  RTDyldMemoryManager.cpp
   TargetSelect.cpp
   )
 
 add_subdirectory(Interpreter)
-add_subdirectory(JIT)
 add_subdirectory(MCJIT)
 add_subdirectory(RuntimeDyld)
+
+if( LLVM_USE_OPROFILE )
+  add_subdirectory(OProfileJIT)
+endif( LLVM_USE_OPROFILE )
+
+if( LLVM_USE_INTEL_JITEVENTS )
+  add_subdirectory(IntelJITEvents)
+endif( LLVM_USE_INTEL_JITEVENTS )