summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo
diff options
context:
space:
mode:
authorGeorge Rimar <grimar@accesssoftek.com>2017-10-27 10:58:04 +0000
committerGeorge Rimar <grimar@accesssoftek.com>2017-10-27 10:58:04 +0000
commit3d07f6004e82ca58f1675c8db7c903680b8403d8 (patch)
tree683ba240d35b738ad197ee2cf16ffbdd13dd71a5 /llvm/lib/DebugInfo
parent144e4c5a32007bb2fe7b18930dcc4d806ef4f92f (diff)
downloadbcm5719-llvm-3d07f6004e82ca58f1675c8db7c903680b8403d8.tar.gz
bcm5719-llvm-3d07f6004e82ca58f1675c8db7c903680b8403d8.zip
Fix BB after r316756 "[llvm-dwarfdump] - Teach verifier to report broken DWARF expressions."
Bot: http://lab.llvm.org:8011/builders/clang-with-thin-lto-ubuntu/builds/6255 Changed format of this message by mistake. llvm-svn: 316757
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r--llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp b/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
index f27c849456b..8e07bb3c462 100644
--- a/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
+++ b/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
@@ -404,7 +404,7 @@ unsigned DWARFVerifier::verifyDebugInfoAttribute(const DWARFDie &Die,
if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) {
if (*SectionOffset >= DObj.getLineSection().Data.size())
ReportError("DW_AT_stmt_list offset is beyond .debug_line bounds: " +
- llvm::formatv("{0:x16}", *SectionOffset));
+ llvm::formatv("{0:x8}", *SectionOffset));
break;
}
ReportError("DIE has invalid DW_AT_stmt_list encoding:");
OpenPOWER on IntegriCloud