[llvm-branch-commits] [GSYM] Include end_sequence debug_line rows in Dwarf transform (PR #90535)
Paul T Robinson via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed May 1 10:20:16 PDT 2024
================
@@ -424,19 +439,13 @@ static void convertFunctionLineTable(OutputAggregator &Out, CUInfo &CUI,
auto LastLE = FI.OptLineTable->last();
if (LastLE && LastLE->File == FileIdx && LastLE->Line == Row.Line)
continue;
+
// Only push a row if it isn't an end sequence. End sequence markers are
// included for the last address in a function or the last contiguous
// address in a sequence.
- if (Row.EndSequence) {
----------------
pogo59 wrote:
> allows functions to have discontiguous ranges. Not sure if that happens.
I think it can, Bolt and/or Propeller put each basic block in its own section IIRC.
https://github.com/llvm/llvm-project/pull/90535
More information about the llvm-branch-commits
mailing list