SparcV8 removed until it grows up becomes a mature backend.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12288 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-03-11 18:16:33 +00:00
parent 0744b5ffd2
commit 094158a133
2 changed files with 2 additions and 7 deletions

View File

@ -1,4 +1,4 @@
##===- tools/llc/Makefile ------------------------------*- Makefile -*-===##
#===- tools/llc/Makefile ------------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
@ -9,7 +9,6 @@
LEVEL = ../..
TOOLNAME = llc
USEDLIBS = cwriter \
sparcv8 \
sparcv9 \
x86 \
powerpc \

View File

@ -37,12 +37,11 @@ OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
enum ArchName { noarch, X86, SparcV8, SparcV9, PowerPC, CBackend };
enum ArchName { noarch, X86, SparcV9, PowerPC, CBackend };
static cl::opt<ArchName>
Arch("march", cl::desc("Architecture to generate assembly for:"), cl::Prefix,
cl::values(clEnumValN(X86, "x86", " IA-32 (Pentium and above)"),
clEnumValN(SparcV8, "sparcv8", " SPARC V8 (experimental)"),
clEnumValN(SparcV9, "sparcv9", " SPARC V9"),
clEnumValN(PowerPC, "powerpc", " PowerPC (experimental)"),
clEnumValN(CBackend, "c", " C backend"),
@ -94,9 +93,6 @@ int main(int argc, char **argv) {
case SparcV9:
TargetMachineAllocator = allocateSparcV9TargetMachine;
break;
case SparcV8:
TargetMachineAllocator = allocateSparcV8TargetMachine;
break;
case PowerPC:
TargetMachineAllocator = allocatePowerPCTargetMachine;
break;