Commit 4752d3bc by Richard Kenner

(expand_function_start): When evaluating sizes of variable types, do

so just for side-effects (the SAVE_EXPRs).

From-SVN: r3896
parent 93609dfb
......@@ -4396,7 +4396,7 @@ 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), NULL_RTX, VOIDmode, 0);
expand_expr (TREE_VALUE (tem), const0_rtx, VOIDmode, 0);
/* 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