aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/mmx.md2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b0863f3..74b8e35 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/config/i386/mmx.md b/gcc/config/i386/mmx.md
index 403501b..ceb520c 100644
--- a/gcc/config/i386/mmx.md
+++ b/gcc/config/i386/mmx.md
@@ -177,7 +177,7 @@
(define_expand "push<mode>1"
[(match_operand:MMXMODE 0 "register_operand" "")]
- "TARGET_SSE"
+ "TARGET_MMX"
{
ix86_expand_push (<MODE>mode, operands[0]);
DONE;