summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Linker/LinkModules.cpp
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-12-18 22:23:07 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-12-18 22:23:07 +0000
commitca93d8406dd2484e580747623356f9cd9221cacb (patch)
tree42e216805bc9162fcca9e66bb9ca2d229f57e066 /llvm/lib/Linker/LinkModules.cpp
parent6b8b4855ff12696f20eb0e48375134ae92dbccd7 (diff)
downloadbcm5719-llvm-ca93d8406dd2484e580747623356f9cd9221cacb.tar.gz
bcm5719-llvm-ca93d8406dd2484e580747623356f9cd9221cacb.zip
Support/PathV1: Deprecate get{Basename,Dirname,Suffix}.
llvm-svn: 122157
Diffstat (limited to 'llvm/lib/Linker/LinkModules.cpp')
-rw-r--r--llvm/lib/Linker/LinkModules.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Linker/LinkModules.cpp b/llvm/lib/Linker/LinkModules.cpp
index dd0b07e09bd..c710d7ee869 100644
--- a/llvm/lib/Linker/LinkModules.cpp
+++ b/llvm/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;
}
OpenPOWER on IntegriCloud