From ed00729d34b5802b51cf4bf8168a5be78d56e62a Mon Sep 17 00:00:00 2001 From: George Rimar Date: Fri, 27 Oct 2017 10:58:04 +0000 Subject: [PATCH] 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316757 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/DebugInfo/DWARF/DWARFVerifier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DebugInfo/DWARF/DWARFVerifier.cpp b/lib/DebugInfo/DWARF/DWARFVerifier.cpp index f27c849456b..8e07bb3c462 100644 --- a/lib/DebugInfo/DWARF/DWARFVerifier.cpp +++ b/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:"); -- 2.50.0