* config/h8300/h8300.md: Tweak formatting.
From-SVN: r78753
This commit is contained in:
parent
a5a0ab452a
commit
ba29f5de04
2 changed files with 28 additions and 30 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-03-02 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* config/h8300/h8300.md: Tweak formatting.
|
||||
|
||||
2004-03-02 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* config/h8300/h8300.md (*cmphi_h8300): Rename to
|
||||
|
|
|
@ -3543,8 +3543,7 @@
|
|||
;; Convert (A >> B) & C to (A & 255) >> B if C == 255 >> B.
|
||||
|
||||
(define_peephole2
|
||||
[(parallel
|
||||
[(set (match_operand:HI 0 "register_operand" "")
|
||||
[(parallel [(set (match_operand:HI 0 "register_operand" "")
|
||||
(lshiftrt:HI (match_dup 0)
|
||||
(match_operand:HI 1 "const_int_operand" "")))
|
||||
(clobber (match_operand:HI 2 "" ""))])
|
||||
|
@ -3565,8 +3564,7 @@
|
|||
;; Convert (A << B) & C to (A & 255) << B if C == 255 << B.
|
||||
|
||||
(define_peephole2
|
||||
[(parallel
|
||||
[(set (match_operand:HI 0 "register_operand" "")
|
||||
[(parallel [(set (match_operand:HI 0 "register_operand" "")
|
||||
(ashift:HI (match_dup 0)
|
||||
(match_operand:HI 1 "const_int_operand" "")))
|
||||
(clobber (match_operand:HI 2 "" ""))])
|
||||
|
@ -3587,8 +3585,7 @@
|
|||
;; Convert (A >> B) & C to (A & 255) >> B if C == 255 >> B.
|
||||
|
||||
(define_peephole2
|
||||
[(parallel
|
||||
[(set (match_operand:SI 0 "register_operand" "")
|
||||
[(parallel [(set (match_operand:SI 0 "register_operand" "")
|
||||
(lshiftrt:SI (match_dup 0)
|
||||
(match_operand:SI 1 "const_int_operand" "")))
|
||||
(clobber (match_operand:SI 2 "" ""))])
|
||||
|
@ -3609,8 +3606,7 @@
|
|||
;; Convert (A << B) & C to (A & 255) << B if C == 255 << B.
|
||||
|
||||
(define_peephole2
|
||||
[(parallel
|
||||
[(set (match_operand:SI 0 "register_operand" "")
|
||||
[(parallel [(set (match_operand:SI 0 "register_operand" "")
|
||||
(ashift:SI (match_dup 0)
|
||||
(match_operand:SI 1 "const_int_operand" "")))
|
||||
(clobber (match_operand:SI 2 "" ""))])
|
||||
|
@ -3631,8 +3627,7 @@
|
|||
;; Convert (A >> B) & C to (A & 65535) >> B if C == 65535 >> B.
|
||||
|
||||
(define_peephole2
|
||||
[(parallel
|
||||
[(set (match_operand:SI 0 "register_operand" "")
|
||||
[(parallel [(set (match_operand:SI 0 "register_operand" "")
|
||||
(lshiftrt:SI (match_dup 0)
|
||||
(match_operand:SI 1 "const_int_operand" "")))
|
||||
(clobber (match_operand:SI 2 "" ""))])
|
||||
|
@ -3653,8 +3648,7 @@
|
|||
;; Convert (A << B) & C to (A & 65535) << B if C == 65535 << B.
|
||||
|
||||
(define_peephole2
|
||||
[(parallel
|
||||
[(set (match_operand:SI 0 "register_operand" "")
|
||||
[(parallel [(set (match_operand:SI 0 "register_operand" "")
|
||||
(ashift:SI (match_dup 0)
|
||||
(match_operand:SI 1 "const_int_operand" "")))
|
||||
(clobber (match_operand:SI 2 "" ""))])
|
||||
|
|
Loading…
Add table
Reference in a new issue