1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

llvm-objdump: fix remaining use of %x format specifier for 64-bit values

Third time lucky. This should finally fix the ARM (& MIPS, I think) bots.

llvm-svn: 215349
This commit is contained in:
Tim Northover 2014-08-11 09:14:06 +00:00
parent 378f39a337
commit 17abcad264

View File

@ -580,7 +580,7 @@ static void printUnwindRelocDest(const MachOObjectFile *Obj,
outs() << Name;
if (Addend)
outs() << " + " << format("0x%x", Addend);
outs() << " + " << format("0x%" PRIx64, Addend);
}
static void