This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] h8300.md: Tweak formatting.


Hi,

Built h8300-elf.  Committed.

Kazu Hirata

2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.md: Tweak formatting.

Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.279
diff -u -r1.279 h8300.md
--- h8300.md	2 Mar 2004 02:20:21 -0000	1.279
+++ h8300.md	2 Mar 2004 04:06:24 -0000
@@ -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" "")))]


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]