Commit 7b05e286 by Jim Wilson

(expand_function_start): Emit queue after expanding

each dynamic parameter type.

From-SVN: r13835
parent 27c38b75
......@@ -5389,7 +5389,12 @@ expand_function_start (subr, parms_have_cleanups)
/* Evaluate now the sizes of any types declared among the arguments. */
for (tem = nreverse (get_pending_sizes ()); tem; tem = TREE_CHAIN (tem))
expand_expr (TREE_VALUE (tem), const0_rtx, VOIDmode, 0);
{
expand_expr (TREE_VALUE (tem), const0_rtx, VOIDmode, 0);
/* Flush the queue in case this parameter declaration has
side-effects. */
emit_queue ();
}
/* Make sure there is a line number after the function entry setup code. */
force_next_line_note ();
......
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