mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +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;
|
||||
if (Addend)
|
||||
outs() << " + " << format("0x%x", Addend);
|
||||
outs() << " + " << format("0x%" PRIx64, Addend);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user