diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-12-01 19:50:54 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-12-01 19:50:54 +0000 |
commit | 0e309fe860afa93bcb25685cac8a97b1316fa0a8 (patch) | |
tree | 512b6343a81006827c49f423c2953f178c71dc15 /llvm/unittests/Linker/LinkModulesTest.cpp | |
parent | 9cb01aa30a42c78248fea0a5c7335292718706b2 (diff) | |
download | bcm5719-llvm-0e309fe860afa93bcb25685cac8a97b1316fa0a8.tar.gz bcm5719-llvm-0e309fe860afa93bcb25685cac8a97b1316fa0a8.zip |
Use references now that it is natural to do so.
The linker never takes ownership of a module or changes which module it
is refering to, making it natural to use references.
llvm-svn: 254449
Diffstat (limited to 'llvm/unittests/Linker/LinkModulesTest.cpp')
-rw-r--r-- | llvm/unittests/Linker/LinkModulesTest.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/llvm/unittests/Linker/LinkModulesTest.cpp b/llvm/unittests/Linker/LinkModulesTest.cpp index a1d889a6b3d..4eba718e266 100644 --- a/llvm/unittests/Linker/LinkModulesTest.cpp +++ b/llvm/unittests/Linker/LinkModulesTest.cpp @@ -93,7 +93,7 @@ TEST_F(LinkModuleTest, BlockAddress) { Builder.CreateRet(ConstantPointerNull::get(Type::getInt8PtrTy(Ctx))); Module *LinkedModule = new Module("MyModuleLinked", Ctx); - Linker::LinkModules(LinkedModule, M.get()); + Linker::linkModules(*LinkedModule, *M); // Delete the original module. M.reset(); @@ -169,13 +169,13 @@ static Module *getInternal(LLVMContext &Ctx) { TEST_F(LinkModuleTest, EmptyModule) { std::unique_ptr<Module> InternalM(getInternal(Ctx)); std::unique_ptr<Module> EmptyM(new Module("EmptyModule1", Ctx)); - Linker::LinkModules(EmptyM.get(), InternalM.get()); + Linker::linkModules(*EmptyM, *InternalM); } TEST_F(LinkModuleTest, EmptyModule2) { std::unique_ptr<Module> InternalM(getInternal(Ctx)); std::unique_ptr<Module> EmptyM(new Module("EmptyModule1", Ctx)); - Linker::LinkModules(InternalM.get(), EmptyM.get()); + Linker::linkModules(*InternalM, *EmptyM); } TEST_F(LinkModuleTest, TypeMerge) { @@ -190,7 +190,7 @@ TEST_F(LinkModuleTest, TypeMerge) { "@t2 = weak global %t zeroinitializer\n"; std::unique_ptr<Module> M2 = parseAssemblyString(M2Str, Err, C); - Linker::LinkModules(M1.get(), M2.get(), [](const llvm::DiagnosticInfo &){}); + Linker::linkModules(*M1, *M2, [](const llvm::DiagnosticInfo &) {}); EXPECT_EQ(M1->getNamedGlobal("t1")->getType(), M1->getNamedGlobal("t2")->getType()); @@ -267,8 +267,7 @@ TEST_F(LinkModuleTest, MoveDistinctMDs) { // Link into destination module. auto Dst = llvm::make_unique<Module>("Linked", C); ASSERT_TRUE(Dst.get()); - Linker::LinkModules(Dst.get(), Src.get(), - [](const llvm::DiagnosticInfo &) {}); + Linker::linkModules(*Dst, *Src, [](const llvm::DiagnosticInfo &) {}); // Check that distinct metadata was moved, not cloned. Even !4, the uniqued // node, should effectively be moved, since its only operand hasn't changed. |