Fix asm-printing directives (how did we not see this before...apparently,
authorBrian Gaeke <gaeke@uiuc.edu>
Thu, 9 Dec 2004 18:51:01 +0000 (18:51 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Thu, 9 Dec 2004 18:51:01 +0000 (18:51 +0000)
everything was an int!)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18712 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Sparc/SparcAsmPrinter.cpp
lib/Target/SparcV8/SparcV8AsmPrinter.cpp

index 80fc85b1400b7f3f47bc48731528db62c0e061ce..432aa2c59498c2bafc74e1b0387f8e3087b64510 100644 (file)
@@ -284,15 +284,15 @@ void V8Printer::emitGlobalConstant(const Constant *CV) {
     O << ".byte";
     break;
   case Type::UShortTyID: case Type::ShortTyID:
-    O << ".word";
+    O << ".half";
     break;
   case Type::FloatTyID: case Type::PointerTyID:
   case Type::UIntTyID: case Type::IntTyID:
-    O << ".long";
+    O << ".word";
     break;
   case Type::DoubleTyID:
   case Type::ULongTyID: case Type::LongTyID:
-    O << ".quad";
+    O << ".xword";
     break;
   default:
     assert (0 && "Can't handle printing this type of thing");
index 80fc85b1400b7f3f47bc48731528db62c0e061ce..432aa2c59498c2bafc74e1b0387f8e3087b64510 100644 (file)
@@ -284,15 +284,15 @@ void V8Printer::emitGlobalConstant(const Constant *CV) {
     O << ".byte";
     break;
   case Type::UShortTyID: case Type::ShortTyID:
-    O << ".word";
+    O << ".half";
     break;
   case Type::FloatTyID: case Type::PointerTyID:
   case Type::UIntTyID: case Type::IntTyID:
-    O << ".long";
+    O << ".word";
     break;
   case Type::DoubleTyID:
   case Type::ULongTyID: case Type::LongTyID:
-    O << ".quad";
+    O << ".xword";
     break;
   default:
     assert (0 && "Can't handle printing this type of thing");