From 33ba8b0e96acde0d8ab1ffc565a5ef4c8b6b6ac2 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 27 Oct 2011 22:56:32 +0000 Subject: Remove the Alpha backend. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143164 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Triple.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'lib/Support/Triple.cpp') 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 ""; 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") -- cgit v1.2.3