mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-22 13:29:44 +00:00
[Orc] Disambiguate call to make_unique. This should fix the builders broken by
r234805. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234806 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
597d2b7309
commit
0d982b840e
@ -50,7 +50,8 @@ OrcLazyJIT::createCallbackManagerBuilder(Triple T) {
|
|||||||
orc::OrcX86_64> CCMgrT;
|
orc::OrcX86_64> CCMgrT;
|
||||||
return [](IRDumpLayerT &IRDumpLayer, RuntimeDyld::MemoryManager &MemMgr,
|
return [](IRDumpLayerT &IRDumpLayer, RuntimeDyld::MemoryManager &MemMgr,
|
||||||
LLVMContext &Context) {
|
LLVMContext &Context) {
|
||||||
return make_unique<CCMgrT>(IRDumpLayer, MemMgr, Context, 0, 64);
|
return llvm::make_unique<CCMgrT>(IRDumpLayer, MemMgr, Context, 0,
|
||||||
|
64);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user