(expand_block_move): Update source and destination pointers inside the

loop moving the bytes, not outside.

From-SVN: r9891
This commit is contained in:
Richard Kenner 1995-06-06 17:52:58 -04:00
parent adedad3ee4
commit 015892ee4a

View File

@ -789,7 +789,6 @@ expand_block_move (operands)
GEN_INT (move_bytes),
align_rtx));
}
}
if (bytes > move_bytes)
{
@ -797,6 +796,7 @@ expand_block_move (operands)
emit_insn (gen_addsi3 (dest_reg, dest_reg, GEN_INT (move_bytes)));
}
}
}
else /* string instructions not available */
{