[llvm-commits] CVS: llvm/lib/Target/SparcV8/SparcV8AsmPrinter.cpp

Chris Lattner lattner at cs.uiuc.edu
Sun Dec 18 15:36:57 PST 2005



Changes in directory llvm/lib/Target/SparcV8:

SparcV8AsmPrinter.cpp updated: 1.48 -> 1.49
---
Log message:

The sun assembler only supports .xword in V9 mode.


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

 SparcV8AsmPrinter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/SparcV8/SparcV8AsmPrinter.cpp
diff -u llvm/lib/Target/SparcV8/SparcV8AsmPrinter.cpp:1.48 llvm/lib/Target/SparcV8/SparcV8AsmPrinter.cpp:1.49
--- llvm/lib/Target/SparcV8/SparcV8AsmPrinter.cpp:1.48	Sun Dec 18 17:35:05 2005
+++ llvm/lib/Target/SparcV8/SparcV8AsmPrinter.cpp	Sun Dec 18 17:36:45 2005
@@ -38,7 +38,7 @@
     SparcV8AsmPrinter(std::ostream &O, TargetMachine &TM) : AsmPrinter(O, TM) {
       Data16bitsDirective = "\t.half\t";
       Data32bitsDirective = "\t.word\t";
-      Data64bitsDirective = "\t.xword\t";
+      Data64bitsDirective = 0;  // .xword is only supported by V9.
       ZeroDirective = 0;  // no .zero or .space!
       CommentString = "!";
       ConstantPoolSection = "\t.section \".rodata\",#alloc\n";






More information about the llvm-commits mailing list