[llvm-commits] CVS: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Aug 20 11:09:30 PDT 2004



Changes in directory llvm/lib/Target/PowerPC:

PowerPCTargetMachine.cpp updated: 1.31 -> 1.32
---
Log message:

Do not register ppc64 yet, as it breaks the SparcV9 backend


---
Diffs of the changes:  (+3 -0)

Index: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.31 llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.32
--- llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.31	Thu Aug 19 16:36:14 2004
+++ llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp	Fri Aug 20 13:09:18 2004
@@ -42,8 +42,11 @@
   // Register the targets
   RegisterTarget<PPC32TargetMachine> 
   X("ppc32", "  PowerPC 32-bit (experimental)");
+
+#if 0
   RegisterTarget<PPC64TargetMachine> 
   Y("ppc64", "  PowerPC 64-bit (unimplemented)");
+#endif
 }
 
 PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name,






More information about the llvm-commits mailing list