mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-07 11:33:44 +00:00
Fix another use of PRIx32 that should have been PRIx64.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224368 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
18f28b2de6
commit
85d57120aa
@ -3103,8 +3103,8 @@ static void PrintSection(const char *sectname, const char *segname,
|
||||
outs() << " addr " << format("0x%016" PRIx64, addr) << "\n";
|
||||
outs() << " size " << format("0x%016" PRIx64, size);
|
||||
} else {
|
||||
outs() << " addr " << format("0x%08" PRIx32, addr) << "\n";
|
||||
outs() << " size " << format("0x%08" PRIx32, size);
|
||||
outs() << " addr " << format("0x%08" PRIx64, addr) << "\n";
|
||||
outs() << " size " << format("0x%08" PRIx64, size);
|
||||
}
|
||||
if ((flags & MachO::S_ZEROFILL) != 0 && offset + size > object_size)
|
||||
outs() << " (past end of file)\n";
|
||||
|
Loading…
Reference in New Issue
Block a user