Fix build error from previous commit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167477 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Kaylor 2012-11-06 19:06:46 +00:00
parent 776054dd93
commit a082892fb7

View File

@ -59,7 +59,7 @@ MCJIT::MCJIT(Module *m, TargetMachine *tm, RTDyldMemoryManager *MM,
MCJIT::~MCJIT() {
if (LoadedObject)
NotifyFreeingObject(LoadedObject.get());
NotifyFreeingObject(*LoadedObject.get());
delete MemMgr;
delete TM;
}