mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-27 07:12:06 +00:00
llvm-objdump.cpp: Use PRIx64 as format specifier for int64_t.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141664 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e2aa5d53db
commit
f048c3fe24
@ -311,7 +311,7 @@ static void PrintSectionHeaders(const ObjectFile *o) {
|
||||
if (error(si->isBSS(BSS))) return;
|
||||
std::string Type = (std::string(Text ? "TEXT " : "") +
|
||||
(Data ? "DATA " : "") + (BSS ? "BSS" : ""));
|
||||
outs() << format("%3d %-13s %09x %017x %s\n", i, Name.str().c_str(), Size,
|
||||
outs() << format("%3d %-13s %09"PRIx64" %017"PRIx64" %s\n", i, Name.str().c_str(), Size,
|
||||
Address, Type.c_str());
|
||||
++i;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user