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

Misha Brukman brukman at cs.uiuc.edu
Wed Aug 11 06:36:02 PDT 2004



Changes in directory llvm/lib/Target/PowerPC:

PowerPCTargetMachine.cpp updated: 1.25 -> 1.26
---
Log message:

Hyphenate ##-bit and remove first-person from comments.


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

Index: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.25 llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.26
--- llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.25	Wed Aug 11 02:40:04 2004
+++ llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp	Wed Aug 11 08:35:44 2004
@@ -38,9 +38,9 @@
   
   // Register the targets
   RegisterTarget<PPC32TargetMachine> 
-  X("ppc32", "  PowerPC 32bit (experimental)");
+  X("ppc32", "  PowerPC 32-bit (experimental)");
   RegisterTarget<PPC64TargetMachine> 
-  Y("ppc64", "  PowerPC 64bit (unimplemented)");
+  Y("ppc64", "  PowerPC 64-bit (unimplemented)");
 }
 
 PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name,
@@ -92,8 +92,8 @@
   if (PrintMachineCode)
     PM.add(createMachineFunctionPrinterPass(&std::cerr));
 
-  // I want a PowerPC specific prolog/epilog code inserter so I can put the 
-  // fills/spills in the right spots.
+  // PowerPC-specific prolog/epilog code inserter to put the fills/spills in the
+  // right spots.
   PM.add(createPowerPCPEI());
   
   // Must run branch selection immediately preceding the printer






More information about the llvm-commits mailing list