Module: wine Branch: master Commit: 754f11a4adc2b7431837a92448b93bb845d99d61 URL: https://gitlab.winehq.org/wine/wine/-/commit/754f11a4adc2b7431837a92448b93bb...
Author: Alexandre Julliard julliard@winehq.org Date: Sun Apr 28 16:06:54 2024 +0200
dbghelp: Ignore a couple of Dwarf-3 opcodes.
---
dlls/dbghelp/dwarf.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index 332c3da1059..34c924f3cda 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -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);