1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +00:00

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
parent 6b4448b623
commit d2f0984fef
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());
}