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

Existing tests were failing.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205092 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tim Northover 2014-03-29 11:47:07 +00:00
parent 3734a337e9
commit 88ac45ffa7

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);
}