* i386.c (ix86_expand_movstr): Fix pasto.

From-SVN: r54591
This commit is contained in:
Jan Hubicka 2002-06-13 18:29:11 +02:00 committed by Jan Hubicka
parent e45e704f91
commit e9b1b19a74
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Jun 13 18:27:05 CEST 2002 Jan Hubicka <jh@suse.cz>
* i386.c (ix86_expand_movstr): Fix pasto.
Thu Jun 13 18:02:11 CEST 2002 Jan Hubicka <jh@suse.cz>
* reload.c (find_valid_class): Fix thinko in my previous patch.

View File

@ -9231,7 +9231,7 @@ ix86_expand_movstr (dst, src, count_exp, align_exp)
if (count == 0 && align < desired_alignment)
{
label = gen_label_rtx ();
emit_cmp_and_jump_insns (countreg, GEN_INT (UNITS_PER_WORD - 1),
emit_cmp_and_jump_insns (countreg, GEN_INT (desired_alignment - 1),
LEU, 0, counter_mode, 1, label);
}
if (align <= 1)