Commit 0b2187a9 by Doug Evans

(assign_parms): Use mode of type, not BLKmode.

From-SVN: r4186
parent 49640f91
......@@ -3216,7 +3216,7 @@ assign_parms (fndecl, second_time)
else
{
int size = int_size_in_bytes (type);
copy = assign_stack_temp (BLKmode, size, 1);
copy = assign_stack_temp (TYPE_MODE (type), size, 1);
}
store_expr (parm, copy, 0);
......
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