[MCJIT] Remove a few more references to JITMemoryManager that survived r218316.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218318 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames
2014-09-23 17:10:24 +00:00
parent f718bf7889
commit e0c253f4e8
4 changed files with 1 additions and 10 deletions

View File

@ -119,10 +119,6 @@ protected:
return;
}
// FIXME: This is using the default legacy JITMemoryManager because it
// supports poison memory. At some point, we'll need to update this to
// use an MCJIT-specific memory manager. It might be nice to have the
// poison memory option there too.
RTDyldMemoryManager *MemMgr = new SectionMemoryManager();
if (!MemMgr) {
errs() << "Unable to create memory manager.";
@ -155,7 +151,6 @@ protected:
}
LLVMContext Context; // Global ownership
JITMemoryManager *JMM; // Owned by ExecutionEngine.
std::unique_ptr<ExecutionEngine> TheJIT;
public: