DWARFDebugRangeList.cpp: Use PRIx64 for uint64_t as format string.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 27 Aug 2012 10:10:10 +0000 (10:10 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 27 Aug 2012 10:10:10 +0000 (10:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162665 91177308-0d34-0410-b5e6-96231b3b80d8

lib/DebugInfo/DWARFDebugRangeList.cpp

index 10f51b4aa09ccff5288b54ccdb7d39b6c55e172d..8012e306c78d3dc8fbe548a8cb95add0725a3746 100644 (file)
@@ -49,8 +49,9 @@ bool DWARFDebugRangeList::extract(DataExtractor data, uint32_t *offset_ptr) {
 
 void DWARFDebugRangeList::dump(raw_ostream &OS) const {
   for (int i = 0, n = Entries.size(); i != n; ++i) {
-    const char *format_str = (AddressSize == 4) ? "%08x %08x %08x\n"
-                                                : "%08x %016x %016x\n";
+    const char *format_str = (AddressSize == 4
+                              ? "%08x %08"PRIx64" %08"PRIx64"\n"
+                              : "%08x %016"PRIx64" %016"PRIx64"\n");
     OS << format(format_str, Offset, Entries[i].StartAddress,
                                      Entries[i].EndAddress);
   }