[llvm] r234806 - [Orc] Disambiguate call to make_unique. This should fix the builders broken by

Lang Hames lhames at gmail.com
Mon Apr 13 15:33:05 PDT 2015


Author: lhames
Date: Mon Apr 13 17:33:05 2015
New Revision: 234806

URL: http://llvm.org/viewvc/llvm-project?rev=234806&view=rev
Log:
[Orc] Disambiguate call to make_unique. This should fix the builders broken by
r234805.

Modified:
    llvm/trunk/tools/lli/OrcLazyJIT.cpp

Modified: llvm/trunk/tools/lli/OrcLazyJIT.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/lli/OrcLazyJIT.cpp?rev=234806&r1=234805&r2=234806&view=diff
==============================================================================
--- llvm/trunk/tools/lli/OrcLazyJIT.cpp (original)
+++ llvm/trunk/tools/lli/OrcLazyJIT.cpp Mon Apr 13 17:33:05 2015
@@ -50,7 +50,8 @@ OrcLazyJIT::createCallbackManagerBuilder
                                              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);
              };
     }
   }





More information about the llvm-commits mailing list