From 6cee154b23361112dc162624e75b6d669f0a05d6 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Sun, 18 Jun 2006 21:31:46 +0200 Subject: [PATCH] dbghelp: Proper support for nested types definitions (even in C). --- dlls/dbghelp/dwarf.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index 19dc812fa79..f0d4ea0a09d 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -58,7 +58,11 @@ WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_dwarf); * o local variables * o unspecified parameters * o inlined functions + * o line numbers + * - Udt + * o proper types loading (addresses, bitfield, nesting) */ + #if 0 static void dump(const void* ptr, unsigned len) { @@ -865,6 +869,11 @@ static struct symt* dwarf2_parse_udt_type(dwarf2_parse_context_t* ctx, case DW_TAG_enumeration_type: dwarf2_parse_enumeration_type(ctx, child); break; + case DW_TAG_structure_type: + case DW_TAG_class_type: + case DW_TAG_union_type: + /* FIXME: we need to handle nested udt definitions */ + break; default: FIXME("Unhandled Tag type 0x%lx at %s, for %s\n", child->abbrev->tag, dwarf2_debug_ctx(ctx), dwarf2_debug_di(di)); -- 2.11.4.GIT