diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-16 00:54:31 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-16 00:54:31 +0000 |
commit | f45c08bf71c972d86b29e21a3c7b32c9ce41a616 (patch) | |
tree | b9ab05323b17c48e8827454d13213f76a6253185 /gcc/c-lex.c | |
parent | fc4d127d252b948716aa39698aa48a30d2149e96 (diff) | |
download | gcc-f45c08bf71c972d86b29e21a3c7b32c9ce41a616.tar.gz |
* c-lex.c (yylex): Initialize warn.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29447 138bc75d-0d04-0410-961f-82ee72b054a4
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 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) |