forked from OSchip/llvm-project
Fix the arm build bots for a test that was added. A printing routine was incorrectly using PRIx32
when it should have been using PRIx64 for the value that was passed as uint64_t . llvm-svn: 224350
This commit is contained in:
parent
d04cd2fbfe
commit
adb7c43c40
|
@ -2999,8 +2999,8 @@ static void PrintSegmentCommand(uint32_t cmd, uint32_t cmdsize,
|
|||
outs() << " vmaddr " << format("0x%016" PRIx64, vmaddr) << "\n";
|
||||
outs() << " vmsize " << format("0x%016" PRIx64, vmsize) << "\n";
|
||||
} else {
|
||||
outs() << " vmaddr " << format("0x%08" PRIx32, vmaddr) << "\n";
|
||||
outs() << " vmsize " << format("0x%08" PRIx32, vmsize) << "\n";
|
||||
outs() << " vmaddr " << format("0x%08" PRIx64, vmaddr) << "\n";
|
||||
outs() << " vmsize " << format("0x%08" PRIx64, vmsize) << "\n";
|
||||
}
|
||||
outs() << " fileoff " << fileoff;
|
||||
if (fileoff > object_size)
|
||||
|
|
Loading…
Reference in New Issue