[llvm-commits] [llvm] r83417 - /llvm/trunk/lib/Support/Triple.cpp
Jeffrey Yasskin
jyasskin at google.com
Tue Oct 6 14:45:26 PDT 2009
Author: jyasskin
Date: Tue Oct 6 16:45:26 2009
New Revision: 83417
URL: http://llvm.org/viewvc/llvm-project?rev=83417&view=rev
Log:
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.
Modified:
llvm/trunk/lib/Support/Triple.cpp
Modified: llvm/trunk/lib/Support/Triple.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Triple.cpp?rev=83417&r1=83416&r2=83417&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Triple.cpp (original)
+++ llvm/trunk/lib/Support/Triple.cpp Tue Oct 6 16:45:26 2009
@@ -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::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) {
More information about the llvm-commits
mailing list