summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2014-12-16 18:58:11 +0000
committerKevin Enderby <enderby@apple.com>2014-12-16 18:58:11 +0000
commitadb7c43c40bff742ce7e62fc72d5bd4f32a74574 (patch)
tree8367f9b36434056bd8ed0fce6b857940fb71a5f4 /llvm
parentd04cd2fbfe1779bb005c75b99c404f50645e3b6f (diff)
downloadbcm5719-llvm-adb7c43c40bff742ce7e62fc72d5bd4f32a74574.tar.gz
bcm5719-llvm-adb7c43c40bff742ce7e62fc72d5bd4f32a74574.zip
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
Diffstat (limited to 'llvm')
-rw-r--r--llvm/tools/llvm-objdump/MachODump.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-objdump/MachODump.cpp b/llvm/tools/llvm-objdump/MachODump.cpp
index 419dc202db7..1750ae4e1eb 100644
--- a/llvm/tools/llvm-objdump/MachODump.cpp
+++ b/llvm/tools/llvm-objdump/MachODump.cpp
@@ -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)
OpenPOWER on IntegriCloud