From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: Kazu Hirata Cc: binutils@sources.redhat.com Subject: Re: [patch] *-dis.c: Fix formatting. Date: Fri, 17 Aug 2001 21:34:00 -0000 Message-id: <3B7DF02F.90201@cygnus.com> References: <200108171934.MAA23915@cygnus.com> X-SW-Source: 2001-08/msg00400.html > @@ -22,9 +22,7 @@ > #include "dis-asm.h" > #include "opintl.h" > > - > -struct avr_opcodes_s > -{ > +struct avr_opcodes_s { > char *name; > char *constraints; > char *opcode; While I'm not sure what BINUTILS is doing I would note that the GNU Coding Standard recomments: struct foo { char *name; char *consts; }; as controlled by gnu-indent's -bls. enjoy, Andrew