Fix typo in turned-off code

From-SVN: r31039
This commit is contained in:
Richard Kenner 1999-12-20 17:55:38 -05:00
parent e545d37f6d
commit 7205485e64

View File

@ -4111,7 +4111,7 @@ store_constructor (exp, target, align, cleared, size)
if (GET_CODE (target) == REG && REGNO (target) < FIRST_PSEUDO_REGISTER)
{
rtx temp = gen_reg_rtx (GET_MODE (target));
store_constructor (exp, temp, 0, size);
store_constructor (exp, temp, align, cleared, size);
emit_move_insn (target, temp);
return;
}