Commit 62d6a090 authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

dbghelp: Parse DW_TAG_const_type inside dwarf2_parse_subprogram_block.

parent 9b02e116
......@@ -1843,6 +1843,9 @@ static void dwarf2_parse_subprogram_block(dwarf2_subprogram_t* subpgm,
case DW_TAG_subroutine_type:
dwarf2_parse_subroutine_type(subpgm->ctx, di);
break;
case DW_TAG_const_type:
dwarf2_parse_const_type(subpgm->ctx, di);
break;
case DW_TAG_lexical_block:
dwarf2_parse_subprogram_block(subpgm, block, child);
break;
......
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