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 | dfc96aea900b281d45779ed3602af3431f5143e9 (patch) | |
tree | 92c88d6ff9235346c5b7e1fcff57bc81987ff023 /llvm/lib/Support/Triple.cpp | |
parent | 30c39c8bf22f07abba6342745d30b2b9398c900f (diff) | |
download | llvm-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.cpp | 5 |
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") |