summaryrefslogtreecommitdiff
path: root/lib/System/Path.cpp
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-11-02 22:18:37 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-11-02 22:18:37 +0000
commitbd6e0323b94361559e125b07cb244629b0da0281 (patch)
tree20edcd2bac3083804311db31740c9ecd913e373d /lib/System/Path.cpp
parented724fd43a2388f93460ca397c69948d346ec4db (diff)
downloadllvm-bd6e0323b94361559e125b07cb244629b0da0281.tar.gz
llvm-bd6e0323b94361559e125b07cb244629b0da0281.tar.bz2
llvm-bd6e0323b94361559e125b07cb244629b0da0281.tar.xz
appendSuffix: don't append a dot when the suffix is empty.
Additionally, move the implementation of appendSuffix to Path.cpp: it is platform-independent. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118089 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Path.cpp')
-rw-r--r--lib/System/Path.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp
index 8fc4153acb..5d8de65661 100644
--- a/lib/System/Path.cpp
+++ b/lib/System/Path.cpp
@@ -196,6 +196,21 @@ StringRef Path::GetDLLSuffix() {
}
bool
+Path::appendSuffix(StringRef suffix) {
+ if (!suffix.empty()) {
+ std::string save(path);
+ path.append(".");
+ path.append(suffix);
+ if (!isValid()) {
+ path = save;
+ return false;
+ }
+ }
+
+ return true;
+}
+
+bool
Path::isBitcodeFile() const {
std::string actualMagic;
if (!getMagicNumber(actualMagic, 4))