diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2004-08-10 21:40:02 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2004-08-10 14:40:02 -0700 |
commit | 22116d840af84286597e0ad501240d35b9a0c5cf (patch) | |
tree | 93b3d179b97e6368f3bf67d954d7a6c97ac20b6d /gcc | |
parent | c75095b27b010e73176c71077e59fc484d3b19ac (diff) | |
download | gcc-22116d840af84286597e0ad501240d35b9a0c5cf.zip gcc-22116d840af84286597e0ad501240d35b9a0c5cf.tar.gz gcc-22116d840af84286597e0ad501240d35b9a0c5cf.tar.bz2 |
re PR target/16909 ("unrecognizable insn" ICE during bootstrap with-cpu=nocona)
2004-08-10 H.J. Lu <hongjiu.lu@intel.com>
PR target/16909
* config/i386/i386.md (*strsetdi_rex_1): Use DI instead of SI.
From-SVN: r85769
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c36374e..56acb0e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-08-10 H.J. Lu <hongjiu.lu@intel.com> + + PR target/16909 + * config/i386/i386.md (*strsetdi_rex_1): Use DI instead of SI. + 2004-08-10 Janis Johnson <janis187@us.ibm.com> * doc/sourcebuild.texi (compat testing): Document available test diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 12c051e..31f3517 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -16770,8 +16770,8 @@ "") (define_insn "*strsetdi_rex_1" - [(set (mem:SI (match_operand:DI 1 "register_operand" "0")) - (match_operand:SI 2 "register_operand" "a")) + [(set (mem:DI (match_operand:DI 1 "register_operand" "0")) + (match_operand:DI 2 "register_operand" "a")) (set (match_operand:DI 0 "register_operand" "=D") (plus:DI (match_dup 1) (const_int 8))) |