diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2008-03-28 18:42:06 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2008-03-28 11:42:06 -0700 |
commit | ad387dad232e58945fc3a1dadc3bd29459d945a0 (patch) | |
tree | 045958124fcf80776e1b9017d4e7cdbcb3814009 /gcc | |
parent | 9aba5d2249ed7556d7a73e43959853e07647d90b (diff) | |
download | gcc-ad387dad232e58945fc3a1dadc3bd29459d945a0.zip gcc-ad387dad232e58945fc3a1dadc3bd29459d945a0.tar.gz gcc-ad387dad232e58945fc3a1dadc3bd29459d945a0.tar.bz2 |
sse.md (*and<mode>3): Pass <MODE>mode instead of V4SFmode to ix86_binary_operator_ok.
2008-03-28 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/sse.md (*and<mode>3): Pass <MODE>mode instead
of V4SFmode to ix86_binary_operator_ok.
From-SVN: r133693
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/sse.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7f0fe26..7e0b005 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-03-28 H.J. Lu <hongjiu.lu@intel.com> + + * config/i386/sse.md (*and<mode>3): Pass <MODE>mode instead + of V4SFmode to ix86_binary_operator_ok. + 2008-03-28 Uros Bizjak <ubizjak@gmail.com> * config/i386/i386.c (override_options): Initialize diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 8ea5bc0..2ac9fb1 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -972,7 +972,7 @@ (match_operand:SSEMODEF2P 1 "nonimmediate_operand" "%0") (match_operand:SSEMODEF2P 2 "nonimmediate_operand" "xm")))] "SSE_VEC_FLOAT_MODE_P (<MODE>mode) - && ix86_binary_operator_ok (AND, V4SFmode, operands)" + && ix86_binary_operator_ok (AND, <MODE>mode, operands)" "andp<ssemodesuffixf2c>\t{%2, %0|%0, %2}" [(set_attr "type" "sselog") (set_attr "mode" "<MODE>")]) |