Commit fd9d4b62 authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

dbghelp: Parse DW_TAG_const_type inside dwarf2_parse_subprogram.

parent 62d6a090
......@@ -1978,6 +1978,9 @@ static struct symt* dwarf2_parse_subprogram(dwarf2_parse_context_t* ctx,
case DW_TAG_pointer_type:
dwarf2_parse_pointer_type(subpgm.ctx, di);
break;
case DW_TAG_const_type:
dwarf2_parse_const_type(subpgm.ctx, di);
break;
case DW_TAG_subprogram:
/* FIXME: likely a declaration (to be checked)
* skip it for now
......
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