From: Richard Henderson Date: Thu, 16 Sep 1999 00:54:31 +0000 (-0700) Subject: * c-lex.c (yylex): Initialize warn. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=637194e69a20cab4a299af8c9706e67a6724f215;p=gcc.git * c-lex.c (yylex): Initialize warn. From-SVN: r29447 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 39930f970d8..aff2d71ac04 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Sep 15 17:53:16 1999 Richard Henderson + + * c-lex.c (yylex): Initialize warn. + Wed Sep 15 18:35:38 1999 Jeffrey A Law (law@cygnus.com) * pa.c (emit_move_sequence): Properly set the mode of the scratch diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 1af77d4c2ea..c4619c4ef5d 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -1761,7 +1761,7 @@ yylex () int spec_long = 0; int spec_long_long = 0; int spec_imag = 0; - int warn, i; + int warn = 0, i; traditional_type = ansi_type = type = NULL_TREE; while (1)