[Lldb-commits] [lldb] r223375 - Fix a build breakage. Looks like the LLVM side of this change has been reverted

Enrico Granata egranata at apple.com
Thu Dec 4 10:39:40 PST 2014


Author: enrico
Date: Thu Dec  4 12:39:40 2014
New Revision: 223375

URL: http://llvm.org/viewvc/llvm-project?rev=223375&view=rev
Log:
Fix a build breakage. Looks like the LLVM side of this change has been reverted

Modified:
    lldb/trunk/source/Expression/IRExecutionUnit.cpp

Modified: lldb/trunk/source/Expression/IRExecutionUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/IRExecutionUnit.cpp?rev=223375&r1=223374&r2=223375&view=diff
==============================================================================
--- lldb/trunk/source/Expression/IRExecutionUnit.cpp (original)
+++ lldb/trunk/source/Expression/IRExecutionUnit.cpp Thu Dec  4 12:39:40 2014
@@ -309,7 +309,7 @@ IRExecutionUnit::GetRunnableInfo(Error &
     builder.setEngineKind(llvm::EngineKind::JIT)
     .setErrorStr(&error_string)
     .setRelocationModel(relocModel)
-    .setMCJITMemoryManager(std::unique_ptr<MemoryManager>(new MemoryManager(*this)))
+    .setMCJITMemoryManager(new MemoryManager(*this))
     .setCodeModel(codeModel)
     .setOptLevel(llvm::CodeGenOpt::Less);
 





More information about the lldb-commits mailing list