[Orc] Move SectionMemoryManager's implementation from MCJIT to ExecutionEngine.

This is a more sensible home for SectionMemoryManager, and allows the implementation
to be shared between Orc and MCJIT.

llvm-svn: 228427
This commit is contained in:
Lang Hames 2015-02-06 19:36:40 +00:00
parent af4f511096
commit e1dab03508
3 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,7 @@ add_llvm_library(LLVMExecutionEngine
ExecutionEngineBindings.cpp
GDBRegistrationListener.cpp
RTDyldMemoryManager.cpp
SectionMemoryManager.cpp
TargetSelect.cpp
)

View File

@ -1,4 +1,3 @@
add_llvm_library(LLVMMCJIT
MCJIT.cpp
SectionMemoryManager.cpp
)