From df5ff98b073fd6554fe7399e68ce4c106e483d0f Mon Sep 17 00:00:00 2001 From: David Heidelberger Date: Sun, 5 Oct 2014 16:26:09 +0200 Subject: [PATCH] dbghelp: Implement DW_TAG_const_type in dwarf2_parse_udt_type. --- dlls/dbghelp/dwarf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index e7c36b00a23..a89cf110f1f 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -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: