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.*: Fix formatting.


Hi,

Attached is a patch to fix formatting.  Committed as obvious.

Kazu Hirata

2002-01-28  Kazu Hirata  <kazu@hxi.com>

	* config/h8300/h8300.h: Fix formatting.
	* config/h8300/h8300.md: Likewise.

Index: h8300.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.h,v
retrieving revision 1.69
diff -u -r1.69 h8300.h
--- h8300.h	2002/01/21 02:24:01	1.69
+++ h8300.h	2002/01/28 15:23:57
@@ -1217,7 +1217,7 @@
   while (0)
 
 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \
-   ASM_OUTPUT_LABEL(FILE, NAME)
+   ASM_OUTPUT_LABEL (FILE, NAME)
 
 /* The prefix to add to user-visible assembler symbols.  */
 
Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.63
diff -u -r1.63 h8300.md
--- h8300.md	2002/01/27 21:50:10	1.63
+++ h8300.md	2002/01/28 15:23:57
@@ -400,7 +400,7 @@
     case 5:
       return \"mov.w	%T1,%e0\;mov.w	%T1,%f0\";
     default:
-      abort();
+      abort ();
     }
 }"
   [(set_attr "length" "4,4,8,8,4,4")
@@ -456,7 +456,7 @@
     case 5:
       return \"mov.w	%T1,%e0\;mov.w	%T1,%f0\";
     default:
-      abort();
+      abort ();
     }
 }"
   [(set_attr "length" "4,4,8,8,4,4")
@@ -1302,7 +1302,7 @@
    (set (match_operand:HI 0 "register_operand" "")
 	(match_dup 2))]
   ""
-  "{ operands[2] = gen_reg_rtx (HImode); }")
+  "operands[2] = gen_reg_rtx (HImode);")
 
 (define_insn "neghi2_h8300h"
   [(set (match_operand:HI 0 "register_operand" "=r")
@@ -1332,7 +1332,7 @@
    (set (match_operand:SI 0 "register_operand" "")
 	(match_dup 2))]
   ""
-  "{ operands[2] = gen_reg_rtx(SImode); }")
+  "operands[2] = gen_reg_rtx (SImode);")
 
 (define_insn "negsi2_h8300h"
   [(set (match_operand:SI 0 "register_operand" "=r")
@@ -1625,9 +1625,9 @@
 }"
   [(set_attr "cc" "clobber")
    (set (attr "length")
-     (if_then_else (match_operand:QI 0 "small_call_insn_operand" "")
-		   (const_int 4)
-		   (const_int 8)))])
+	(if_then_else (match_operand:QI 0 "small_call_insn_operand" "")
+		      (const_int 4)
+		      (const_int 8)))])
 
 ;; Call subroutine, returning value in operand 0
 ;; (which must be a hard register).
@@ -1649,9 +1649,9 @@
 }"
   [(set_attr "cc" "clobber")
    (set (attr "length")
-     (if_then_else (match_operand:QI 0 "small_call_insn_operand" "")
-		   (const_int 4)
-		   (const_int 8)))])
+	(if_then_else (match_operand:QI 0 "small_call_insn_operand" "")
+		      (const_int 4)
+		      (const_int 8)))])
 
 (define_insn "nop"
   [(const_int 0)]


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