diff options
author | Dan Gohman <gohman@apple.com> | 2011-10-27 22:56:32 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2011-10-27 22:56:32 +0000 |
commit | 33ba8b0e96acde0d8ab1ffc565a5ef4c8b6b6ac2 (patch) | |
tree | 19356b63d7d9c64977cbfdac0d82e272b117cfbf /lib/Support/Triple.cpp | |
parent | 03e03b098462c2715598ca96298110b63c57a2d3 (diff) |
Remove the Alpha backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Triple.cpp')
-rw-r--r-- | lib/Support/Triple.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 6e252a5899..ac4f005ab1 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -18,7 +18,6 @@ const char *Triple::getArchTypeName(ArchType Kind) { case InvalidArch: return "<invalid>"; case UnknownArch: return "unknown"; - case alpha: return "alpha"; case arm: return "arm"; case cellspu: return "cellspu"; case mips: return "mips"; @@ -50,8 +49,6 @@ const char *Triple::getArchTypePrefix(ArchType Kind) { default: return 0; - case alpha: return "alpha"; - case arm: case thumb: return "arm"; @@ -131,8 +128,6 @@ const char *Triple::getEnvironmentTypeName(EnvironmentType Kind) { } Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) { - if (Name == "alpha") - return alpha; if (Name == "arm") return arm; if (Name == "cellspu") @@ -286,8 +281,6 @@ Triple::ArchType Triple::ParseArch(StringRef ArchName) { else if (ArchName == "thumb" || ArchName.startswith("thumbv")) return thumb; - else if (ArchName.startswith("alpha")) - return alpha; else if (ArchName == "spu" || ArchName == "cellspu") return cellspu; else if (ArchName == "msp430") |