From 24c032e981e4f6c2bbdbe413a882845bdfb277d0 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 29 Feb 1996 17:46:19 -0800 Subject: [PATCH] (push_init_level): When output padding to align structure field, set constructor_unfilled_fields. From-SVN: r11391 --- gcc/c-typeck.c | 3 +++ 1 file changed, 3 insertions(+) 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)); -- 2.30.2