Fix asm-printing directives (how did we not see this before...apparently,

everything was an int!)


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18712 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2004-12-09 18:51:01 +00:00
parent 2dc45b818f
commit 3bf960ccac
2 changed files with 6 additions and 6 deletions

View 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");

View 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");