summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-20 19:56:15 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-20 19:56:15 +0000
commitc1a5b9f419c512de13dbca10b9f935560e123ad0 (patch)
treee610dc3a7ec884870054a95ce7dd8c5e14032deb
parent9d5d0361c678239b5c1772842db35de00f309c16 (diff)
downloadgcc-c1a5b9f419c512de13dbca10b9f935560e123ad0.tar.gz
PR target/21100
* config/i386/mmx.md (push<MMXMODE>1): Fix predicate thinko. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98468 138bc75d-0d04-0410-961f-82ee72b054a4
-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 b0863f3a633..74b8e35192c 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 403501bf4dc..ceb520c008f 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;