David Heidelberger : dbghelp: Implement DW_TAG_const_type in dwarf2_parse_udt_type.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Oct 9 13:14:33 CDT 2014


Module: wine
Branch: master
Commit: df5ff98b073fd6554fe7399e68ce4c106e483d0f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=df5ff98b073fd6554fe7399e68ce4c106e483d0f

Author: David Heidelberger <david.heidelberger at ixit.cz>
Date:   Sun Oct  5 16:26:09 2014 +0200

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 e7c36b0..a89cf11 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:




More information about the wine-cvs mailing list