Re: [PATCH] [POWERPC] Invalid semicolon after if statement

2007-08-16 Thread Michael Ellerman
On Thu, 2007-08-16 at 18:40 +0200, Andreas Schwab wrote: > Segher Boessenkool <[EMAIL PROTECTED]> writes: > > >> Thanks to the frickin compiler for warning us, not. > > > > 4.3: "warning: suggest braces around empty body in an 'if' statement" > > > > 4.1: "warning: empty body in an if-statement" >

Re: [PATCH] [POWERPC] Invalid semicolon after if statement

2007-08-16 Thread Andreas Schwab
Segher Boessenkool <[EMAIL PROTECTED]> writes: >> Thanks to the frickin compiler for warning us, not. > > 4.3: "warning: suggest braces around empty body in an 'if' statement" > > 4.1: "warning: empty body in an if-statement" > > Your GCC is too old :-) This warning is only enabled by -Wextra. O

Re: [PATCH] [POWERPC] Invalid semicolon after if statement

2007-08-16 Thread Segher Boessenkool
> Thanks to the frickin compiler for warning us, not. 4.3: "warning: suggest braces around empty body in an 'if' statement" 4.1: "warning: empty body in an if-statement" Your GCC is too old :-) Segher ___ Linuxppc-dev mailing list Linuxppc-dev@ozlab

Re: [PATCH] [POWERPC] Invalid semicolon after if statement

2007-08-16 Thread Michael Ellerman
On Thu, 2007-08-16 at 01:03 +0300, Ilpo Järvinen wrote: > A similar fix to netfilter from Eric Dumazet inspired me to > look around a bit by using some grep/sed stuff as looking for > this kind of bugs seemed easy to automate. This is one of them > I found where it looks like this semicolon is not

Re: [PATCH] [POWERPC] Invalid semicolon after if statement

2007-08-16 Thread Geert Uytterhoeven
On Thu, 16 Aug 2007, [ISO-8859-1] Ilpo J�rvinen wrote: > A similar fix to netfilter from Eric Dumazet inspired me to > look around a bit by using some grep/sed stuff as looking for > this kind of bugs seemed easy to automate. This is one of them > I found where it looks like this semicolon is not v

[PATCH] [POWERPC] Invalid semicolon after if statement

2007-08-15 Thread Ilpo Järvinen
A similar fix to netfilter from Eric Dumazet inspired me to look around a bit by using some grep/sed stuff as looking for this kind of bugs seemed easy to automate. This is one of them I found where it looks like this semicolon is not valid. Signed-off-by: Ilpo Järvinen <[EMAIL PROTECTED]> --- .