projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
597d2b7
)
[Orc] Disambiguate call to make_unique. This should fix the builders broken by
author
Lang Hames
<lhames@gmail.com>
Mon, 13 Apr 2015 22:33:05 +0000
(22:33 +0000)
committer
Lang Hames
<lhames@gmail.com>
Mon, 13 Apr 2015 22:33:05 +0000
(22:33 +0000)
r234805.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234806
91177308
-0d34-0410-b5e6-
96231b3b80d8
tools/lli/OrcLazyJIT.cpp
patch
|
blob
|
history
diff --git
a/tools/lli/OrcLazyJIT.cpp
b/tools/lli/OrcLazyJIT.cpp
index 519bd72ccd4261f3046eba4c729ec9c5f143849d..8771a91be7d3ac9168da691eddd78fd487f57f96 100644
(file)
--- a/
tools/lli/OrcLazyJIT.cpp
+++ b/
tools/lli/OrcLazyJIT.cpp
@@
-50,7
+50,8
@@
OrcLazyJIT::createCallbackManagerBuilder(Triple T) {
orc::OrcX86_64> CCMgrT;
return [](IRDumpLayerT &IRDumpLayer, RuntimeDyld::MemoryManager &MemMgr,
LLVMContext &Context) {
- return make_unique<CCMgrT>(IRDumpLayer, MemMgr, Context, 0, 64);
+ return llvm::make_unique<CCMgrT>(IRDumpLayer, MemMgr, Context, 0,
+ 64);
};
}
}