From: Richard Kenner Date: Sun, 23 Jan 1994 10:59:15 +0000 (-0500) Subject: (really_start_incremental_init): Save current elements instead of X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5cb7368c6660cfdf7b878553e3f871b2a13c91a2;p=gcc.git (really_start_incremental_init): Save current elements instead of clearing them. From-SVN: r6406 --- diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index f2f507d922d..1e475d87e28 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -4976,7 +4976,7 @@ really_start_incremental_init (type) p->unfilled_index = constructor_unfilled_index; p->unfilled_fields = constructor_unfilled_fields; p->bit_index = constructor_bit_index; - p->elements = 0; + p->elements = constructor_elements; p->constant = constructor_constant; p->simple = constructor_simple; p->erroneous = constructor_erroneous;