[Lldb-commits] [lldb] r217003 - Really fix the LLDB build

Reid Kleckner reid at kleckner.net
Tue Sep 2 17:40:36 PDT 2014


Author: rnk
Date: Tue Sep  2 19:40:36 2014
New Revision: 217003

URL: http://llvm.org/viewvc/llvm-project?rev=217003&view=rev
Log:
Really fix the LLDB build

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=217003&r1=217002&r2=217003&view=diff
==============================================================================
--- lldb/trunk/source/Expression/IRExecutionUnit.cpp (original)
+++ lldb/trunk/source/Expression/IRExecutionUnit.cpp Tue Sep  2 19:40:36 2014
@@ -301,10 +301,7 @@ IRExecutionUnit::GetRunnableInfo(Error &
     .setErrorStr(&error_string)
     .setRelocationModel(relocModel)
     .setJITMemoryManager(new MemoryManager(*this))
-    .setOptLevel(llvm::CodeGenOpt::Less)
-    .setAllocateGVsWithCode(true)
-    .setCodeModel(codeModel)
-    .setUseMCJIT(true);
+    .setOptLevel(llvm::CodeGenOpt::Less);
 
     llvm::StringRef mArch;
     llvm::StringRef mCPU;





More information about the lldb-commits mailing list