Remove PIC16 remnants.

llvm-svn: 120223
This commit is contained in:
Benjamin Kramer 2010-11-27 18:20:30 +00:00
parent e308b8edab
commit f2d08136bf
2 changed files with 0 additions and 6 deletions

View File

@ -53,7 +53,6 @@ public:
mips, // MIPS: mips, mipsallegrex
mipsel, // MIPSEL: mipsel, mipsallegrexel, psp
msp430, // MSP430: msp430
pic16, // PIC16: pic16
ppc, // PPC: powerpc
ppc64, // PPC64: powerpc64, ppu
sparc, // Sparc: sparc

View File

@ -30,7 +30,6 @@ const char *Triple::getArchTypeName(ArchType Kind) {
case mips: return "mips";
case mipsel: return "mipsel";
case msp430: return "msp430";
case pic16: return "pic16";
case ppc64: return "powerpc64";
case ppc: return "powerpc";
case sparc: return "sparc";
@ -138,8 +137,6 @@ Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
return mipsel;
if (Name == "msp430")
return msp430;
if (Name == "pic16")
return pic16;
if (Name == "ppc64")
return ppc64;
if (Name == "ppc")
@ -250,8 +247,6 @@ Triple::ArchType Triple::ParseArch(StringRef ArchName) {
return x86_64;
else if (ArchName == "bfin")
return bfin;
else if (ArchName == "pic16")
return pic16;
else if (ArchName == "powerpc")
return ppc;
else if ((ArchName == "powerpc64") || (ArchName == "ppu"))