diff options
author | ed <ed@FreeBSD.org> | 2009-06-23 19:31:59 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2009-06-23 19:31:59 +0000 |
commit | 5c1b5c146f3df07c75174aff06c3bb0968f6857e (patch) | |
tree | 2db4127ea6c69f2548de6981658579fddd794448 /lib/ExecutionEngine | |
parent | 4d74f68bdcfeab629970a41b69b96ac709b08a2b (diff) | |
download | FreeBSD-src-5c1b5c146f3df07c75174aff06c3bb0968f6857e.zip FreeBSD-src-5c1b5c146f3df07c75174aff06c3bb0968f6857e.tar.gz |
Import LLVM r73984.
It seems I keep importing sources at very unlucky moments. Let's see
what this revision of LLVM does.
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r-- | lib/ExecutionEngine/CMakeLists.txt | 2 | ||||
-rw-r--r-- | lib/ExecutionEngine/Interpreter/CMakeLists.txt | 2 | ||||
-rw-r--r-- | lib/ExecutionEngine/JIT/CMakeLists.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/ExecutionEngine/CMakeLists.txt b/lib/ExecutionEngine/CMakeLists.txt index e26b98f..0e118cc 100644 --- a/lib/ExecutionEngine/CMakeLists.txt +++ b/lib/ExecutionEngine/CMakeLists.txt @@ -1,4 +1,4 @@ -add_partially_linked_object(LLVMExecutionEngine +add_llvm_library(LLVMExecutionEngine ExecutionEngine.cpp ExecutionEngineBindings.cpp ) diff --git a/lib/ExecutionEngine/Interpreter/CMakeLists.txt b/lib/ExecutionEngine/Interpreter/CMakeLists.txt index 626e804..dff97fa 100644 --- a/lib/ExecutionEngine/Interpreter/CMakeLists.txt +++ b/lib/ExecutionEngine/Interpreter/CMakeLists.txt @@ -1,4 +1,4 @@ -add_partially_linked_object(LLVMInterpreter +add_llvm_library(LLVMInterpreter Execution.cpp ExternalFunctions.cpp Interpreter.cpp diff --git a/lib/ExecutionEngine/JIT/CMakeLists.txt b/lib/ExecutionEngine/JIT/CMakeLists.txt index d7980d0..e0c13a1 100644 --- a/lib/ExecutionEngine/JIT/CMakeLists.txt +++ b/lib/ExecutionEngine/JIT/CMakeLists.txt @@ -1,7 +1,7 @@ # TODO: Support other architectures. See Makefile. add_definitions(-DENABLE_X86_JIT) -add_partially_linked_object(LLVMJIT +add_llvm_library(LLVMJIT Intercept.cpp JIT.cpp JITDwarfEmitter.cpp |