1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Fix pr4227: Handle large immediate values in inline assembly.

llvm-svn: 72138
This commit is contained in:
Bob Wilson 2009-05-19 21:27:57 +00:00
parent c24a00edc2
commit ba6b02b54b

View File

@ -294,7 +294,7 @@ void ARMAsmPrinter::printOperand(const MachineInstr *MI, int opNum,
if (!Modifier || strcmp(Modifier, "no_hash") != 0)
O << "#";
O << (int)MO.getImm();
O << MO.getImm();
break;
}
case MachineOperand::MO_MachineBasicBlock: