diff options
author | Dan Gohman <gohman@apple.com> | 2011-10-24 23:48:32 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2011-10-24 23:48:32 +0000 |
commit | 29074ccf6cb00a3cbe32a3b7809d970ecaf8c9bf (patch) | |
tree | 3de39be9068ed749690b6ce82fb34b79b0232f70 /lib/Support/Triple.cpp | |
parent | b36e03d987c843ccb731627ffd2b1db17bd72e39 (diff) |
Remove the SystemZ backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142878 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Triple.cpp')
-rw-r--r-- | lib/Support/Triple.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index c61af372d7..2554d64121 100644 --- a/lib/Support/Triple.cpp +++ b/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") |