dbghelp: Parse DW_TAG_const_type inside dwarf2_parse_subprogram_block.

Signed-off-by: Qian Hong <qhong@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Qian Hong 2015-10-09 19:59:38 +08:00 committed by Alexandre Julliard
parent 9b02e116bd
commit 62d6a09085
1 changed files with 3 additions and 0 deletions

View File

@ -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;