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

Richard Henderson rth@redhat.com
Thu Jul 21 20:43:00 GMT 2005


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~



More information about the Gcc-patches mailing list