summaryrefslogtreecommitdiff
path: root/lib/Support/Triple.cpp
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2009-10-06 21:45:26 +0000
committerJeffrey Yasskin <jyasskin@google.com>2009-10-06 21:45:26 +0000
commit0b22873adc26711e44a6f2e06eb0e97a01787594 (patch)
treea9a6407f623153c6430f2c63739392212ce45366 /lib/Support/Triple.cpp
parentec1d81c3898753a78c934cd4aae50032d9483e53 (diff)
downloadllvm-0b22873adc26711e44a6f2e06eb0e97a01787594.tar.gz
llvm-0b22873adc26711e44a6f2e06eb0e97a01787594.tar.bz2
llvm-0b22873adc26711e44a6f2e06eb0e97a01787594.tar.xz
r83391 was completely broken since Twines keep references to their inputs, and
some of the inputs were temporaries. Here's a real fix for the miscompilation. Thanks to sabre for pointing out the problem. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83417 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Triple.cpp')
-rw-r--r--lib/Support/Triple.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp
index 804769d04e..6f805da332 100644
--- a/lib/Support/Triple.cpp
+++ b/lib/Support/Triple.cpp
@@ -9,6 +9,7 @@
#include "llvm/ADT/Triple.h"
+#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/Twine.h"
#include <cassert>
#include <cstring>
@@ -390,10 +391,14 @@ void Triple::setOS(OSType Kind) {
}
void Triple::setArchName(const StringRef &Str) {
- // Work around a miscompilation bug in gcc 4.0.3.
- Twine a = getVendorName() + "-" + getOSAndEnvironmentName();
- Twine b = Str + "-" + a;
- setTriple(b);
+ // Work around a miscompilation bug for Twines in gcc 4.0.3.
+ SmallString<64> Triple;
+ Triple += Str;
+ Triple += "-";
+ Triple += getVendorName();
+ Triple += "-";
+ Triple += getOSAndEnvironmentName();
+ setTriple(Triple.str());
}
void Triple::setVendorName(const StringRef &Str) {