diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-01-23 05:59:15 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-01-23 05:59:15 -0500 |
commit | 5cb7368c6660cfdf7b878553e3f871b2a13c91a2 (patch) | |
tree | 649344c1283fa7aba5f6cb37ee550168ff52d49c | |
parent | 88a3dbc1a94b7bed9dfd556d4064d9b3ed721a11 (diff) | |
download | gcc-5cb7368c6660cfdf7b878553e3f871b2a13c91a2.zip gcc-5cb7368c6660cfdf7b878553e3f871b2a13c91a2.tar.gz gcc-5cb7368c6660cfdf7b878553e3f871b2a13c91a2.tar.bz2 |
(really_start_incremental_init): Save current elements instead of
clearing them.
From-SVN: r6406
-rw-r--r-- | gcc/c-typeck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index f2f507d..1e475d8 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; |