diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ccf189e..225584f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Fri Feb 25 19:22:44 2000 Graham Stott <grahams@rcp.co.uk> + + * i386.md (define_expand "clrstrsi"): Fix typo. + Fri Feb 25 18:49:39 2000 "K. Richard Pixley" <rich@microunity.com> * rtl.texi: Fix typo. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 58a5059..54a8d7a 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -8293,7 +8293,7 @@ emit_insn (gen_andsi3 (tmpcount, destreg, GEN_INT (4))); emit_cmp_and_jump_insns (tmpcount, GEN_INT (0), EQ, 0, SImode, 1, 0, label); - emit_insn (gen_strsethi (destreg, zeroreg)); + emit_insn (gen_strsetsi (destreg, zeroreg)); emit_insn (gen_addsi3 (countreg, countreg, GEN_INT (-4))); emit_label (label); LABEL_NUSES (label) = 1; |