Commit 754f11a4 authored by Alexandre Julliard's avatar Alexandre Julliard

dbghelp: Ignore a couple of Dwarf-3 opcodes.

parent a113aded
......@@ -2784,6 +2784,9 @@ static BOOL dwarf2_parse_line_numbers(dwarf2_parse_context_t* ctx,
case DW_LNS_fixed_advance_pc:
address += dwarf2_parse_u2(&traverse);
break;
case DW_LNS_set_prologue_end:
case DW_LNS_set_epilogue_begin:
break;
case DW_LNS_extended_op:
dwarf2_leb128_as_unsigned(&traverse);
extopcode = dwarf2_parse_byte(&traverse);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment