summaryrefslogtreecommitdiffstats
path: root/lldb/source/Expression/IRExecutionUnit.cpp
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2014-12-04 18:39:40 +0000
committerEnrico Granata <egranata@apple.com>2014-12-04 18:39:40 +0000
commitc5d32d751eab95ab2b6b69e23570481ed2adf729 (patch)
tree0a27c75e39354e8df89a04e6d0d1a51cca4e1ddb /lldb/source/Expression/IRExecutionUnit.cpp
parent8333152bb893407c79edd1e1ad81f1369aa7d2e5 (diff)
downloadbcm5719-llvm-c5d32d751eab95ab2b6b69e23570481ed2adf729.tar.gz
bcm5719-llvm-c5d32d751eab95ab2b6b69e23570481ed2adf729.zip
Fix a build breakage. Looks like the LLVM side of this change has been reverted
llvm-svn: 223375
Diffstat (limited to 'lldb/source/Expression/IRExecutionUnit.cpp')
-rw-r--r--lldb/source/Expression/IRExecutionUnit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/IRExecutionUnit.cpp b/lldb/source/Expression/IRExecutionUnit.cpp
index e7cb728778e..8fdb3109298 100644
--- a/lldb/source/Expression/IRExecutionUnit.cpp
+++ b/lldb/source/Expression/IRExecutionUnit.cpp
@@ -309,7 +309,7 @@ IRExecutionUnit::GetRunnableInfo(Error &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);
OpenPOWER on IntegriCloud