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]

Re: [PATCH] {c, c++, fortran, java} Fix unitialised warnings with -O3


On Thu, 21 Jul 2005, 22:43:38 +0200, Richard Henderson wrote:
> On Tue, Jul 19, 2005 at 05:16:11PM +0200, Manfred Hollstein wrote:
> > +  else
> > +    { token2.type = RID_MAX; token2.keyword = RID_MAX; }
> 
> Formatting.  Either 
> 
> 	token2.type = token2.keyword = RID_MAX;
> 
> or
> 
> 	{
> 	  token2.type = RID_MAX;
> 	  token2.keyword = RID_MAX;
> 	}
> 
> Otherwise ok.

Thanks for reviewing. I installed the patch with the first formatting
fix you suggested.

> r~

Cheers.

l8er
manfred


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