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

From-SVN: r4186
This commit is contained in:
Doug Evans 1993-04-21 00:31:18 +00:00
parent 49640f91c6
commit 0b2187a9ba
1 changed files with 1 additions and 1 deletions

View File

@ -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);