diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-28 14:48:24 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-08-28 14:48:24 -0700 |
commit | 967603efc9e5f6772e57ae5d1375e6cb79e17a34 (patch) | |
tree | 8fbca79be57698d1d79cadf5a8949bd79926df0b /gcc | |
parent | 70f66039601a150c5a264e68e01957bd1d3a7b32 (diff) | |
download | gcc-967603efc9e5f6772e57ae5d1375e6cb79e17a34.zip gcc-967603efc9e5f6772e57ae5d1375e6cb79e17a34.tar.gz gcc-967603efc9e5f6772e57ae5d1375e6cb79e17a34.tar.bz2 |
ia64.md (andcmbi3, iorcmbi3): Fix typos.
* config/ia64/ia64.md (andcmbi3, iorcmbi3): Fix typos.
(one_cmplbi2 splitter): Remove redundant test.
From-SVN: r45238
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/ia64/ia64.md | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b74ebf..cacbe40 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-28 Richard Henderson <rth@redhat.com> + + * config/ia64/ia64.md (andcmbi3, iorcmbi3): Fix typos. + (one_cmplbi2 splitter): Remove redundant test. + 2001-08-28 Dale Johannesen <dalej@apple.com> * config/rs6000/darwin.h (DEFAULT_SIGNED_CHAR): Define. diff --git a/gcc/config/ia64/ia64.md b/gcc/config/ia64/ia64.md index 5c8793f..03cedc0 100644 --- a/gcc/config/ia64/ia64.md +++ b/gcc/config/ia64/ia64.md @@ -1218,11 +1218,11 @@ "" "@ # - tbit.z.and.orcm %0, %I0 = %2, 0 + tbit.z.and.orcm %0, %I0 = %1, 0 andcm %0 = %2, %1" "reload_completed && GET_CODE (operands[0]) == REG && PR_REGNO_P (REGNO (operands[0])) - && GET_CODE (operands[2]) == REG && PR_REGNO_P (REGNO (operands[2]))" + && GET_CODE (operands[1]) == REG && PR_REGNO_P (REGNO (operands[1]))" [(cond_exec (ne (match_dup 1) (const_int 0)) (set (match_dup 0) (and:BI (ne:BI (const_int 0) (const_int 0)) (match_dup 0))))] @@ -1254,10 +1254,10 @@ "" "@ # - tbit.z.or.andcm %0, %I0 = %2, 0" + tbit.z.or.andcm %0, %I0 = %1, 0" "reload_completed && GET_CODE (operands[0]) == REG && PR_REGNO_P (REGNO (operands[0])) - && GET_CODE (operands[2]) == REG && PR_REGNO_P (REGNO (operands[2]))" + && GET_CODE (operands[1]) == REG && PR_REGNO_P (REGNO (operands[1]))" [(cond_exec (eq (match_dup 1) (const_int 0)) (set (match_dup 0) (ior:BI (eq:BI (const_int 0) (const_int 0)) (match_dup 0))))] @@ -1282,7 +1282,6 @@ (clobber (match_scratch:BI 2 ""))] "reload_completed && GET_CODE (operands[0]) == REG && PR_REGNO_P (REGNO (operands[0])) - && GET_CODE (operands[1]) == REG && PR_REGNO_P (REGNO (operands[1])) && rtx_equal_p (operands[0], operands[1])" [(set (match_dup 4) (match_dup 3)) (set (match_dup 0) (const_int 1)) |