diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-18 22:23:07 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-18 22:23:07 +0000 |
commit | 738550910156b5cefdc0c12923ec8cc6982fb26f (patch) | |
tree | 950239925d2eb59f995a254bbf66f99c857ef39d /lib/Linker | |
parent | a37029cd24105f645a694abbafbc9bf1212708b0 (diff) | |
download | external_llvm-738550910156b5cefdc0c12923ec8cc6982fb26f.zip external_llvm-738550910156b5cefdc0c12923ec8cc6982fb26f.tar.gz external_llvm-738550910156b5cefdc0c12923ec8cc6982fb26f.tar.bz2 |
Support/PathV1: Deprecate get{Basename,Dirname,Suffix}.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122157 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r-- | lib/Linker/LinkModules.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index dd0b07e..c710d7e 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; } |