diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-11-28 01:02:06 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2012-11-28 01:02:06 +0000 |
commit | 0a2d4e2deaccf10f06d8ad6700f1dd11e24c67d4 (patch) | |
tree | 7472841a8cede3913e4d02946d4311aa1f70bc23 /llvm/lib/ExecutionEngine | |
parent | e9adcab0a1aee2c1dee308b5beaeee7fba29a61e (diff) | |
download | bcm5719-llvm-0a2d4e2deaccf10f06d8ad6700f1dd11e24c67d4.tar.gz bcm5719-llvm-0a2d4e2deaccf10f06d8ad6700f1dd11e24c67d4.zip |
Moving SectionMemoryManager to MCJIT to avoid cross dependency between JIT and RuntimeDyld
llvm-svn: 168755
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt | 1 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp (renamed from llvm/lib/ExecutionEngine/RuntimeDyld/SectionMemoryManager.cpp) | 0 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt | 1 |
3 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt b/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt index 2911a507722..088635a0e99 100644 --- a/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt +++ b/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt @@ -1,3 +1,4 @@ add_llvm_library(LLVMMCJIT MCJIT.cpp + SectionMemoryManager.cpp ) diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/SectionMemoryManager.cpp b/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp index fa35acd389a..fa35acd389a 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/SectionMemoryManager.cpp +++ b/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt b/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt index 728303ac4ea..cbf7cf14d49 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt @@ -3,5 +3,4 @@ add_llvm_library(LLVMRuntimeDyld RuntimeDyld.cpp RuntimeDyldELF.cpp RuntimeDyldMachO.cpp - SectionMemoryManager.cpp ) |