diff options
author | Zachary Turner <zturner@google.com> | 2014-08-07 16:50:45 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-08-07 16:50:45 +0000 |
commit | c3494340108a027ca8a7538cca545ce798abe5db (patch) | |
tree | fde9afcac6567e19c30c1fde9aabf9338bd21175 /lldb/source/Expression/IRExecutionUnit.cpp | |
parent | 7c03013c8b595d0c12ef1cc01f6b77918bc637df (diff) | |
download | bcm5719-llvm-c3494340108a027ca8a7538cca545ce798abe5db.tar.gz bcm5719-llvm-c3494340108a027ca8a7538cca545ce798abe5db.zip |
Fix the build broken as a result of deleting jit from LLVM.
llvm-svn: 215119
Diffstat (limited to 'lldb/source/Expression/IRExecutionUnit.cpp')
-rw-r--r-- | lldb/source/Expression/IRExecutionUnit.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Expression/IRExecutionUnit.cpp b/lldb/source/Expression/IRExecutionUnit.cpp index 76956082da0..fb8ea1a3587 100644 --- a/lldb/source/Expression/IRExecutionUnit.cpp +++ b/lldb/source/Expression/IRExecutionUnit.cpp @@ -302,9 +302,7 @@ IRExecutionUnit::GetRunnableInfo(Error &error, .setRelocationModel(relocModel) .setJITMemoryManager(new MemoryManager(*this)) .setOptLevel(llvm::CodeGenOpt::Less) - .setAllocateGVsWithCode(true) - .setCodeModel(codeModel) - .setUseMCJIT(true); + .setCodeModel(codeModel); llvm::StringRef mArch; llvm::StringRef mCPU; |