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 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.


r~


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