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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215349 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tim Northover 2014-08-11 09:14:06 +00:00
parent 17ef00ea94
commit 835cfaa11b

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