We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b26ae4d commit 17d24caCopy full SHA for 17d24ca
llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
@@ -582,9 +582,11 @@ void DWARFDebugLine::ParsingState::appendRowToMatrix() {
582
if (Row.EndSequence) {
583
// Record the end of instruction sequence.
584
Sequence.HighPC = Row.Address.Address;
585
+#if 0
586
// Proposed change, without this the added test will fail. With this
- // GSYMTest/TestDWARFNoLines will fail Sequence.HighPC = Row.Address.Address
587
- // + LineTable->Prologue.MinInstLength
+ // GSYMTest/TestDWARFNoLines will fail
588
+ Sequence.HighPC = Row.Address.Address + LineTable->Prologue.MinInstLength;
589
+#endif
590
Sequence.LastRowIndex = RowNumber + 1;
591
Sequence.SectionIndex = Row.Address.SectionIndex;
592
if (Sequence.isValid())
0 commit comments