diff options
| author | Lang Hames <lhames@gmail.com> | 2015-04-13 22:33:05 +0000 |
|---|---|---|
| committer | Lang Hames <lhames@gmail.com> | 2015-04-13 22:33:05 +0000 |
| commit | 271f4d1c1b74661dabdaecf0c196c9155138d223 (patch) | |
| tree | 78fcdc40c06586fea32fe1266e815f81520edb87 | |
| parent | cd3fd83c3a84dec41b352e526407d8bc8b7a21f3 (diff) | |
| download | bcm5719-llvm-271f4d1c1b74661dabdaecf0c196c9155138d223.tar.gz bcm5719-llvm-271f4d1c1b74661dabdaecf0c196c9155138d223.zip | |
[Orc] Disambiguate call to make_unique. This should fix the builders broken by
r234805.
llvm-svn: 234806
| -rw-r--r-- | llvm/tools/lli/OrcLazyJIT.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/lli/OrcLazyJIT.cpp b/llvm/tools/lli/OrcLazyJIT.cpp index 519bd72ccd4..8771a91be7d 100644 --- a/llvm/tools/lli/OrcLazyJIT.cpp +++ b/llvm/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); }; } } |

