Drop Alpha and S/390 support.

This commit is contained in:
alexrp
2012-10-22 20:24:16 +02:00
parent b5420eb22c
commit a54c2cf0f6

View File

@@ -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();