The sun assembler only supports .xword in V9 mode.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24842 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Sparc/SparcAsmPrinter.cpp b/lib/Target/Sparc/SparcAsmPrinter.cpp
index ee01e74..7e5448e 100644
--- a/lib/Target/Sparc/SparcAsmPrinter.cpp
+++ b/lib/Target/Sparc/SparcAsmPrinter.cpp
@@ -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";