From: Jim Wilson Date: Fri, 1 Mar 1996 01:46:19 +0000 (-0800) Subject: (push_init_level): When output padding to align structure X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=24c032e981e4f6c2bbdbe413a882845bdfb277d0;p=gcc.git (push_init_level): When output padding to align structure field, set constructor_unfilled_fields. From-SVN: r11391 --- diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 0ffbf80a8e9..3c4f26847e2 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -5347,6 +5347,9 @@ push_init_level (implicit) assemble_zeros (next - here); } + /* Indicate that we have now filled the structure up to the current + field. */ + constructor_unfilled_fields = constructor_fields; } p = (struct constructor_stack *) xmalloc (sizeof (struct constructor_stack));