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

Misha Brukman brukman at cs.uiuc.edu
Thu Aug 19 14:56:23 PDT 2004



Changes in directory llvm/lib/Target/PowerPC:

PPC64AsmPrinter.cpp updated: 1.8 -> 1.9
---
Log message:

Fix opcodes being printed in caps (the more general fix may be `AsmWriter')


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

Index: llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp
diff -u llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp:1.8 llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp:1.9
--- llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp:1.8	Thu Aug 19 11:33:56 2004
+++ llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp	Thu Aug 19 16:56:12 2004
@@ -569,7 +569,7 @@
     return;
   }
 
-  O << TII.getName(Opcode) << " ";
+  O << LowercaseString(TII.getName(Opcode)) << " ";
   if (Opcode == PPC::BLR || Opcode == PPC::NOP) {
     O << "\n";
   } else if (ArgCount == 3 && 






More information about the llvm-commits mailing list