dbghelp: Implement DW_TAG_const_type in dwarf2_parse_udt_type.

This commit is contained in:
David Heidelberger 2014-10-05 16:26:09 +02:00 committed by Alexandre Julliard
parent 1bec6ab0bc
commit df5ff98b07
1 changed files with 3 additions and 0 deletions

View File

@ -1453,6 +1453,9 @@ static struct symt* dwarf2_parse_udt_type(dwarf2_parse_context_t* ctx,
case DW_TAG_subprogram:
dwarf2_parse_subprogram(ctx, child);
break;
case DW_TAG_const_type:
dwarf2_parse_const_type(ctx, child);
break;
case DW_TAG_structure_type:
case DW_TAG_class_type:
case DW_TAG_union_type: