From 5cb7368c6660cfdf7b878553e3f871b2a13c91a2 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 23 Jan 1994 05:59:15 -0500 Subject: [PATCH] (really_start_incremental_init): Save current elements instead of clearing them. From-SVN: r6406 --- gcc/c-typeck.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2