diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-14 20:26:23 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-14 20:26:23 +0000 |
| commit | eb9ad2ea74e971f2e31ead63412a183c11181e54 (patch) | |
| tree | 861412fcd0c8d68a4460d5dd493832a0ccf00c56 | |
| parent | a5d087a0034ebe58c28ab983da9570e2d9903e6d (diff) | |
| download | ppe42-gcc-eb9ad2ea74e971f2e31ead63412a183c11181e54.tar.gz ppe42-gcc-eb9ad2ea74e971f2e31ead63412a183c11181e54.zip | |
* config/alpha/alpha.md (builtin_zapnot): Fix op2 mode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54625 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/alpha/alpha.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 451e1682c51..320605fba8d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-06-14 Richard Henderson <rth@redhat.com> + + * config/alpha/alpha.md (builtin_zapnot): Fix op2 mode. + 2002-06-14 Franz Sirl <Franz.Sirl-kernel@lauterbach.com> * rtl.h (SCHED_GROUP_P): Disallow CODE_LABEL, BARRIER and NOTE. diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 9b6a83028b6..c955a9d75a7 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -7389,7 +7389,7 @@ fadd,fmul,fcpys,fdiv,fsqrt,misc,mvi,ftoi,itof,multi,none" (define_expand "builtin_zapnot" [(set (match_operand:DI 0 "register_operand" "") (and:DI (unspec:DI - [(not:QI (match_operand:QI 2 "reg_or_const_int_operand" ""))] + [(not:QI (match_operand:DI 2 "reg_or_const_int_operand" ""))] UNSPEC_ZAP) (match_operand:DI 1 "reg_or_const_int_operand" "")))] "" |

