Commit 8d75e509 by Richard Kenner

(process_init_element): Don't clear_momentary if constructor_stack is

not empty.

From-SVN: r9584
parent c8465d86
......@@ -6288,7 +6288,8 @@ process_init_element (value)
/* If the (lexically) previous elments are not now saved,
we can discard the storage for them. */
if (constructor_incremental && constructor_pending_elts == 0 && value != 0)
if (constructor_incremental && constructor_pending_elts == 0 && value != 0
&& constructor_stack == 0)
clear_momentary ();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment