From: George Rimar Date: Tue, 15 Aug 2017 16:42:21 +0000 (+0000) Subject: [llvm-dwarfdump] - Attemp to fix BB after r310915. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f9877058a2f53f06b9d07b24dd479afd03280b22;p=llvm [llvm-dwarfdump] - Attemp to fix BB after r310915. Now MIPS one is unhappy: http://lab.llvm.org:8011/builders/llvm-mips-linux/builds/2221 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@310928 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/DebugInfo/DWARF/DWARFDie.cpp b/lib/DebugInfo/DWARF/DWARFDie.cpp index 7086535c334..09c004453dd 100644 --- a/lib/DebugInfo/DWARF/DWARFDie.cpp +++ b/lib/DebugInfo/DWARF/DWARFDie.cpp @@ -77,7 +77,7 @@ static void dumpRanges(const DWARFObject &Obj, raw_ostream &OS, // Print section index if name is not unique. if (!SectionNames[R.SectionIndex].IsNameUnique) - OS << format(" [%u]", R.SectionIndex); + OS << format(" [%" PRIu64 "]", R.SectionIndex); } }