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 | 6e1c4561e54da1f9d7052bcb4d985de513b4859c (patch) | |
tree | d90095a7746f851a4b9301c0dc444230d5c299a7 | |
parent | 00a3e5e7240003aad5e431a5c4ba28feb86fb7be (diff) |
Moving SectionMemoryManager to MCJIT to avoid cross dependency between JIT and RuntimeDyld
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168755 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/ExecutionEngine/MCJIT/CMakeLists.txt | 1 | ||||
-rw-r--r-- | lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp (renamed from lib/ExecutionEngine/RuntimeDyld/SectionMemoryManager.cpp) | 0 | ||||
-rw-r--r-- | lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt | 1 |
3 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/MCJIT/CMakeLists.txt b/lib/ExecutionEngine/MCJIT/CMakeLists.txt index 2911a50772..088635a0e9 100644 --- a/lib/ExecutionEngine/MCJIT/CMakeLists.txt +++ b/lib/ExecutionEngine/MCJIT/CMakeLists.txt @@ -1,3 +1,4 @@ add_llvm_library(LLVMMCJIT MCJIT.cpp + SectionMemoryManager.cpp ) diff --git a/lib/ExecutionEngine/RuntimeDyld/SectionMemoryManager.cpp b/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp index fa35acd389..fa35acd389 100644 --- a/lib/ExecutionEngine/RuntimeDyld/SectionMemoryManager.cpp +++ b/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp diff --git a/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt b/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt index 728303ac4e..cbf7cf14d4 100644 --- a/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt +++ b/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt @@ -3,5 +3,4 @@ add_llvm_library(LLVMRuntimeDyld RuntimeDyld.cpp RuntimeDyldELF.cpp RuntimeDyldMachO.cpp - SectionMemoryManager.cpp ) |