diff options
author | Richard Henderson <rth@cygnus.com> | 1999-09-15 17:54:31 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-15 17:54:31 -0700 |
commit | 637194e69a20cab4a299af8c9706e67a6724f215 (patch) | |
tree | b9ab05323b17c48e8827454d13213f76a6253185 /gcc/c-lex.c | |
parent | dd8c13e38722b002cbc000a73ba539a7eedbc496 (diff) | |
download | gcc-637194e69a20cab4a299af8c9706e67a6724f215.zip gcc-637194e69a20cab4a299af8c9706e67a6724f215.tar.gz gcc-637194e69a20cab4a299af8c9706e67a6724f215.tar.bz2 |
* c-lex.c (yylex): Initialize warn.
From-SVN: r29447
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 1af77d4..c4619c4 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) |