Commit 7a30f0c4 by Jim Wilson

(assign_parms): Set RTX_UNCHANGING_P on stack_parm

for const parameter before calling move_block_from_reg.

From-SVN: r8075
parent 17923320
......@@ -3433,6 +3433,9 @@ assign_parms (fndecl, second_time)
else if (PARM_BOUNDARY % BITS_PER_WORD != 0)
abort ();
if (TREE_READONLY (parm))
RTX_UNCHANGING_P (stack_parm) = 1;
move_block_from_reg (REGNO (entry_parm),
validize_mem (stack_parm),
size_stored / UNITS_PER_WORD,
......
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