LibDebug: Implement support for DWARF 5 line programs

This commit is contained in:
Gunnar Beutner 2021-04-28 22:19:46 +02:00 committed by Andreas Kling
commit d2f0984fef
Notes: sideshowbarker 2024-07-18 18:59:45 +09:00
3 changed files with 181 additions and 44 deletions

View file

@ -92,7 +92,7 @@ void DebugInfo::prepare_lines()
Vector<Dwarf::LineProgram::LineInfo> all_lines;
while (!stream.eof()) {
Dwarf::LineProgram program(stream);
Dwarf::LineProgram program(m_dwarf_info, stream);
all_lines.append(program.lines());
}