aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Triple.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2011-10-24 23:48:32 +0000
committerDan Gohman <gohman@apple.com>2011-10-24 23:48:32 +0000
commitdfc96aea900b281d45779ed3602af3431f5143e9 (patch)
tree92c88d6ff9235346c5b7e1fcff57bc81987ff023 /llvm/lib/Support/Triple.cpp
parent30c39c8bf22f07abba6342745d30b2b9398c900f (diff)
downloadllvm-dfc96aea900b281d45779ed3602af3431f5143e9.zip
llvm-dfc96aea900b281d45779ed3602af3431f5143e9.tar.gz
llvm-dfc96aea900b281d45779ed3602af3431f5143e9.tar.bz2
Remove the SystemZ backend.
llvm-svn: 142878
Diffstat (limited to 'llvm/lib/Support/Triple.cpp')
-rw-r--r--llvm/lib/Support/Triple.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp
index c61af37..2554d64 100644
--- a/llvm/lib/Support/Triple.cpp
+++ b/llvm/lib/Support/Triple.cpp
@@ -31,7 +31,6 @@ const char *Triple::getArchTypeName(ArchType Kind) {
case ppc: return "powerpc";
case sparc: return "sparc";
case sparcv9: return "sparcv9";
- case systemz: return "s390x";
case tce: return "tce";
case thumb: return "thumb";
case x86: return "i386";
@@ -165,8 +164,6 @@ Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
return sparc;
if (Name == "sparcv9")
return sparcv9;
- if (Name == "systemz")
- return systemz;
if (Name == "tce")
return tce;
if (Name == "thumb")
@@ -316,8 +313,6 @@ Triple::ArchType Triple::ParseArch(StringRef ArchName) {
return sparc;
else if (ArchName == "sparcv9")
return sparcv9;
- else if (ArchName == "s390x")
- return systemz;
else if (ArchName == "tce")
return tce;
else if (ArchName == "xcore")