From a54c2cf0f6e257f2e22b0585fefb52d559b000d8 Mon Sep 17 00:00:00 2001 From: alexrp Date: Mon, 22 Oct 2012 20:24:16 +0200 Subject: [PATCH] Drop Alpha and S/390 support. --- driver/main.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/driver/main.cpp b/driver/main.cpp index 02cca7b3..38c9ea41 100644 --- a/driver/main.cpp +++ b/driver/main.cpp @@ -620,10 +620,6 @@ int main(int argc, char** argv) VersionCondition::addPredefinedGlobalIdent("ARM_Soft"); VersionCondition::addPredefinedGlobalIdent("D_SoftFloat"); break; - case llvm::Triple::alpha: - // FIXME: Detect soft float (Alpha_SoftFP/Alpha_HardFP). - VersionCondition::addPredefinedGlobalIdent("Alpha"); - break; case llvm::Triple::mips: case llvm::Triple::mipsel: // FIXME: Detect 64-bit MIPS (MIPS64). @@ -639,11 +635,6 @@ int main(int argc, char** argv) VersionCondition::addPredefinedGlobalIdent("SPARC64"); VersionCondition::addPredefinedGlobalIdent("D_HardFloat"); break; - case llvm::Triple::systemz: - // FIXME: Detect S390 (S390) too. - VersionCondition::addPredefinedGlobalIdent("S390X"); - VersionCondition::addPredefinedGlobalIdent("D_HardFloat"); - break; default: error("invalid cpu architecture specified: %s", global.params.targetTriple.getArchName().str().c_str()); fatal();