[llvm-commits] CVS: llvm/tools/llc/Makefile llc.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Mar 11 12:17:01 PST 2004
Changes in directory llvm/tools/llc:
Makefile updated: 1.49 -> 1.50
llc.cpp updated: 1.94 -> 1.95
---
Log message:
SparcV8 removed until it grows up becomes a mature backend.
---
Diffs of the changes: (+2 -7)
Index: llvm/tools/llc/Makefile
diff -u llvm/tools/llc/Makefile:1.49 llvm/tools/llc/Makefile:1.50
--- llvm/tools/llc/Makefile:1.49 Sat Feb 28 13:55:16 2004
+++ llvm/tools/llc/Makefile Thu Mar 11 12:16:33 2004
@@ -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 \
Index: llvm/tools/llc/llc.cpp
diff -u llvm/tools/llc/llc.cpp:1.94 llvm/tools/llc/llc.cpp:1.95
--- llvm/tools/llc/llc.cpp:1.94 Sat Feb 28 13:55:16 2004
+++ llvm/tools/llc/llc.cpp Thu Mar 11 12:16:33 2004
@@ -37,12 +37,11 @@
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"),
@@ -93,9 +92,6 @@
break;
case SparcV9:
TargetMachineAllocator = allocateSparcV9TargetMachine;
- break;
- case SparcV8:
- TargetMachineAllocator = allocateSparcV8TargetMachine;
break;
case PowerPC:
TargetMachineAllocator = allocatePowerPCTargetMachine;
More information about the llvm-commits
mailing list