This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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]

[committed] MIPS/GAS: Coding style fixes


Hi,

 I have applied the change below, as obvious, correcting indentation and 
removing a pair of extraneous braces from a place in append_insn.

2013-02-18  Maciej W. Rozycki  <macro@codesourcery.com>

	gas/
	* config/tc-mips.c (append_insn): Correct indentation, remove
	extraneous braces.

  Maciej

binutils-gas-no-prev-insn-format.diff
Index: binutils-fsf-trunk-quilt/gas/config/tc-mips.c
===================================================================
--- binutils-fsf-trunk-quilt.orig/gas/config/tc-mips.c	2013-02-17 03:31:00.894120693 +0000
+++ binutils-fsf-trunk-quilt/gas/config/tc-mips.c	2013-02-17 06:58:59.564087892 +0000
@@ -4644,12 +4644,10 @@ append_insn (struct mips_cl_insn *ip, ex
     {
       unsigned int i;
 
-    mips_no_prev_insn ();
+      mips_no_prev_insn ();
 
       for (i = 0; i < ARRAY_SIZE (history); i++)
-      {
-        history[i].cleared_p = 1;
-      }
+	history[i].cleared_p = 1;
     }
 
   /* We need to emit a label at the end of branch-likely macros.  */


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