diff options
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp index 87d582b3c27..d4757e0f86e 100644 --- a/llvm/unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp +++ b/llvm/unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp @@ -37,7 +37,7 @@ TEST_F(LazyReexportsTest, BasicLocalCallThroughManagerOperation) { bool DummyTargetMaterialized = false; - cantFail(JD.define(llvm::make_unique<SimpleMaterializationUnit>( + cantFail(JD.define(std::make_unique<SimpleMaterializationUnit>( SymbolFlagsMap({{DummyTarget, JITSymbolFlags::Exported}}), [&](MaterializationResponsibility R) { DummyTargetMaterialized = true; |