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

Misha Brukman brukman at cs.uiuc.edu
Thu Aug 12 10:16:53 PDT 2004



Changes in directory llvm/lib/Target/PowerPC:

PowerPCTargetMachine.cpp updated: 1.27 -> 1.28
---
Log message:

Disable PPC64 backend by default because LLC cannot choose automatically between
SparcV9 and PowerPC64 without target triples, since they are both 64-bit
big-endian targets.


---
Diffs of the changes:  (+2 -2)

Index: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.27 llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.28
--- llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.27	Wed Aug 11 18:47:08 2004
+++ llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp	Thu Aug 12 12:16:43 2004
@@ -41,8 +41,8 @@
   // Register the targets
   RegisterTarget<PPC32TargetMachine> 
   X("ppc32", "  PowerPC 32-bit (experimental)");
-  RegisterTarget<PPC64TargetMachine> 
-  Y("ppc64", "  PowerPC 64-bit (unimplemented)");
+  //RegisterTarget<PPC64TargetMachine> 
+  //Y("ppc64", "  PowerPC 64-bit (unimplemented)");
 }
 
 PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name,






More information about the llvm-commits mailing list