diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-02 06:05:59 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-02 06:05:59 +0000 |
commit | c031412d21c29e4738572737e24d637021625ca8 (patch) | |
tree | 5fb5ad0ba2a88350b1a8fd36092abbbf81da7a1e /gcc/config/h8300 | |
parent | 638faf41ab4db75f40fdac9db4a7a5694d7995ee (diff) | |
download | gcc-c031412d21c29e4738572737e24d637021625ca8.tar.gz |
* config/h8300/h8300.md: Tweak formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78753 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/h8300')
-rw-r--r-- | gcc/config/h8300/h8300.md | 54 |
1 files changed, 24 insertions, 30 deletions
diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index b7e481e862c..6bd51431cb2 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -3543,11 +3543,10 @@ ;; Convert (A >> B) & C to (A & 255) >> B if C == 255 >> B. (define_peephole2 - [(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 "" ""))]) + [(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 "" ""))]) (set (match_dup 0) (and:HI (match_dup 0) (match_operand:HI 3 "const_int_operand" "")))] @@ -3565,11 +3564,10 @@ ;; Convert (A << B) & C to (A & 255) << B if C == 255 << B. (define_peephole2 - [(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 "" ""))]) + [(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 "" ""))]) (set (match_dup 0) (and:HI (match_dup 0) (match_operand:HI 3 "const_int_operand" "")))] @@ -3587,11 +3585,10 @@ ;; Convert (A >> B) & C to (A & 255) >> B if C == 255 >> B. (define_peephole2 - [(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 "" ""))]) + [(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 "" ""))]) (set (match_dup 0) (and:SI (match_dup 0) (match_operand:SI 3 "const_int_operand" "")))] @@ -3609,11 +3606,10 @@ ;; Convert (A << B) & C to (A & 255) << B if C == 255 << B. (define_peephole2 - [(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 "" ""))]) + [(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 "" ""))]) (set (match_dup 0) (and:SI (match_dup 0) (match_operand:SI 3 "const_int_operand" "")))] @@ -3631,11 +3627,10 @@ ;; Convert (A >> B) & C to (A & 65535) >> B if C == 65535 >> B. (define_peephole2 - [(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 "" ""))]) + [(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 "" ""))]) (set (match_dup 0) (and:SI (match_dup 0) (match_operand:SI 3 "const_int_operand" "")))] @@ -3653,11 +3648,10 @@ ;; Convert (A << B) & C to (A & 65535) << B if C == 65535 << B. (define_peephole2 - [(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 "" ""))]) + [(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 "" ""))]) (set (match_dup 0) (and:SI (match_dup 0) (match_operand:SI 3 "const_int_operand" "")))] |