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

[llvm-dwarfdump] - Attemp to fix BB after r310915.

Now MIPS one is unhappy:
http://lab.llvm.org:8011/builders/llvm-mips-linux/builds/2221

llvm-svn: 310928
This commit is contained in:
George Rimar 2017-08-15 16:42:21 +00:00
parent ef0d7d04c6
commit 3295c10856

View File

@ -77,7 +77,7 @@ static void dumpRanges(const DWARFObject &Obj, raw_ostream &OS,
// Print section index if name is not unique. // Print section index if name is not unique.
if (!SectionNames[R.SectionIndex].IsNameUnique) if (!SectionNames[R.SectionIndex].IsNameUnique)
OS << format(" [%u]", R.SectionIndex); OS << format(" [%" PRIu64 "]", R.SectionIndex);
} }
} }