aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGraham Stott <grahams@rcp.co.uk>2000-02-26 02:24:11 +0000
committerJeff Law <law@gcc.gnu.org>2000-02-25 19:24:11 -0700
commit4a92092ae6a0d60d571fa7a73bc05aee4ef31107 (patch)
tree8756d9487cd6c495144de7e38e8b16a8ed74be27 /gcc
parent98f3c1dbd3f00fd828ed32416ac4c3eaffd28063 (diff)
downloadgcc-4a92092ae6a0d60d571fa7a73bc05aee4ef31107.zip
gcc-4a92092ae6a0d60d571fa7a73bc05aee4ef31107.tar.gz
gcc-4a92092ae6a0d60d571fa7a73bc05aee4ef31107.tar.bz2
*** empty log message ***
From-SVN: r32159
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/i386/i386.md2
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;