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:
parent
378f39a337
commit
17abcad264
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user