commit | e5269439cd4368ed8220254f416cc1d25b6ac5ff | [log] [tgz] |
---|---|---|
author | George Rimar <grimar@accesssoftek.com> | Tue Aug 15 16:42:21 2017 +0000 |
committer | George Rimar <grimar@accesssoftek.com> | Tue Aug 15 16:42:21 2017 +0000 |
tree | 310ff69e11468275512ba54e1ac4fd42c89a0195 | |
parent | 99d56d291f9cf1dfff3b84696a9ab50e05684780 [diff] |
[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
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp index 7086535..09c0044 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
@@ -77,7 +77,7 @@ // Print section index if name is not unique. if (!SectionNames[R.SectionIndex].IsNameUnique) - OS << format(" [%u]", R.SectionIndex); + OS << format(" [%" PRIu64 "]", R.SectionIndex); } }