diff options
Diffstat (limited to 'gdb/dwarfread.c')
-rw-r--r-- | gdb/dwarfread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarfread.c b/gdb/dwarfread.c index 6eb0a0b..3fdfd1c 100644 --- a/gdb/dwarfread.c +++ b/gdb/dwarfread.c @@ -1147,7 +1147,7 @@ read_structure_scope (struct dieinfo *dip, char *thisdie, char *enddie, struct symbol *sym; type = struct_type (dip, thisdie, enddie, objfile); - if (!(TYPE_FLAGS (type) & TYPE_FLAG_STUB)) + if (!TYPE_STUB (type)) { sym = new_symbol (dip, objfile); if (sym != NULL) |