summaryrefslogtreecommitdiff
path: root/lib/Linker
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-12-18 04:13:36 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-12-18 04:13:36 +0000
commitb9c767cce502f016a5bdb07884625a3fffbe048c (patch)
treec714af53af3bbe91fcc8f58bdfc166a4b7cfb516 /lib/Linker
parentf705a7ed27eba0e0b33fab43c7f7ee27110ee23b (diff)
downloadllvm-b9c767cce502f016a5bdb07884625a3fffbe048c.tar.gz
llvm-b9c767cce502f016a5bdb07884625a3fffbe048c.tar.bz2
llvm-b9c767cce502f016a5bdb07884625a3fffbe048c.tar.xz
Support/PathV1: Deprecate get{Basename,Dirname,Suffix}.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r--lib/Linker/LinkModules.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index dd0b07e09b..c710d7ee86 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -1301,10 +1301,9 @@ Linker::LinkModules(Module *Dest, Module *Src, std::string *ErrorMsg) {
// If the source library's module id is in the dependent library list of the
// destination library, remove it since that module is now linked in.
- sys::Path modId;
- modId.set(Src->getModuleIdentifier());
- if (!modId.isEmpty())
- Dest->removeLibrary(modId.getBasename());
+ const std::string &modId = Src->getModuleIdentifier();
+ if (!modId.empty())
+ Dest->removeLibrary(sys::path::stem(modId));
return false;
}