mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-22 04:05:05 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215349 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
17ef00ea94
commit
835cfaa11b
@ -580,7 +580,7 @@ static void printUnwindRelocDest(const MachOObjectFile *Obj,
|
|||||||
|
|
||||||
outs() << Name;
|
outs() << Name;
|
||||||
if (Addend)
|
if (Addend)
|
||||||
outs() << " + " << format("0x%x", Addend);
|
outs() << " + " << format("0x%" PRIx64, Addend);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
x
Reference in New Issue
Block a user