1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fix another use of PRIx32 that should have been PRIx64.

llvm-svn: 224368
This commit is contained in:
Kevin Enderby 2014-12-16 21:00:25 +00:00
parent bb5c698516
commit 1fc8b820e6

View File

@ -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";