Commit 7205485e by Richard Kenner

Fix typo in turned-off code

From-SVN: r31039
parent e545d37f
...@@ -4111,7 +4111,7 @@ store_constructor (exp, target, align, cleared, size) ...@@ -4111,7 +4111,7 @@ store_constructor (exp, target, align, cleared, size)
if (GET_CODE (target) == REG && REGNO (target) < FIRST_PSEUDO_REGISTER) if (GET_CODE (target) == REG && REGNO (target) < FIRST_PSEUDO_REGISTER)
{ {
rtx temp = gen_reg_rtx (GET_MODE (target)); 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); emit_move_insn (target, temp);
return; return;
} }
......
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