diff options
author | Reid Kleckner <reid@kleckner.net> | 2014-09-03 00:40:36 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2014-09-03 00:40:36 +0000 |
commit | 54209533030e05c75183f515f9487593754316c7 (patch) | |
tree | 1ffc7b1304b46b6c66ad19a251f89526c6078377 /lldb/source/Expression/IRExecutionUnit.cpp | |
parent | 634ff8ec0483aec2b893c69c0f884414698b5c7d (diff) | |
download | bcm5719-llvm-54209533030e05c75183f515f9487593754316c7.tar.gz bcm5719-llvm-54209533030e05c75183f515f9487593754316c7.zip |
Really fix the LLDB build
llvm-svn: 217003
Diffstat (limited to 'lldb/source/Expression/IRExecutionUnit.cpp')
-rw-r--r-- | lldb/source/Expression/IRExecutionUnit.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/source/Expression/IRExecutionUnit.cpp b/lldb/source/Expression/IRExecutionUnit.cpp index 090f88fc1bf..41cc89979f3 100644 --- a/lldb/source/Expression/IRExecutionUnit.cpp +++ b/lldb/source/Expression/IRExecutionUnit.cpp @@ -301,10 +301,7 @@ IRExecutionUnit::GetRunnableInfo(Error &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; |