re PR target/21100 (ICE: unrecognizable insn for -march=pentium-mmx)
authorRichard Henderson <rth@redhat.com>
Wed, 20 Apr 2005 19:56:15 +0000 (12:56 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 20 Apr 2005 19:56:15 +0000 (12:56 -0700)
        PR target/21100
        * config/i386/mmx.md (push<MMXMODE>1): Fix predicate thinko.

From-SVN: r98468

gcc/ChangeLog
gcc/config/i386/mmx.md

index b0863f3..74b8e35 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-20  Richard Henderson  <rth@redhat.com>
+
+       PR target/21100
+       * config/i386/mmx.md (push<MMXMODE>1): Fix predicate thinko.
+
 2005-04-20  Jeff Law  <law@redhat.com>
 
        * reload1.c (reload): Ignore equivalences between pseudos and
index 403501b..ceb520c 100644 (file)
 
 (define_expand "push<mode>1"
   [(match_operand:MMXMODE 0 "register_operand" "")]
-  "TARGET_SSE"
+  "TARGET_MMX"
 {
   ix86_expand_push (<MODE>mode, operands[0]);
   DONE;