1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

ARM64: change format specifier to work on 32-bit targets

Existing tests were failing.

llvm-svn: 205092
This commit is contained in:
Tim Northover 2014-03-29 11:47:07 +00:00
parent e47441ef1d
commit e41e9d23ba

View File

@ -1424,5 +1424,5 @@ void ARM64InstPrinter::printSIMDType10Operand(const MCInst *MI, unsigned OpNo,
raw_ostream &O) {
unsigned RawVal = MI->getOperand(OpNo).getImm();
uint64_t Val = ARM64_AM::decodeAdvSIMDModImmType10(RawVal);
O << format("#%#016lx", Val);
O << format("#%#016llx", Val);
}