diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8faec20ec2b2..c7b1b6a49191 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Mon Jan 24 16:56:10 2000 Jim Wilson + + * dwarf2out.c (gen_struct_or_union_type_die): Set complete if + TYPE_STUB_DECL is NULL. + 2000-01-24 Richard Henderson * builtins.c (expand_tree_builtin): Move ... diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 3fcc05f18d66..9c36e7e43fe7 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -8922,7 +8922,8 @@ gen_struct_or_union_type_die (type, context_die) register dw_die_ref scope_die = 0; register int nested = 0; int complete = (TYPE_SIZE (type) - && ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))); + && (! TYPE_STUB_DECL (type) + || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type)))); if (type_die && ! complete) return;