This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
lex.c oddity
- From: Jeff Sturm <jsturm at one-point dot com>
- To: java at gcc dot gnu dot org
- Date: Tue, 18 Nov 2003 00:32:50 -0500 (EST)
- Subject: lex.c oddity
While debugging the parser, I stumbled across this code in java_init_lex:
int java_lang_imported = 0;
...
if (!java_lang_imported)
{
...
java_lang_imported = 1;
Clearly the conditional is always taken. Was this meant to be declared
static? (I tried; it doesn't work.)
Jeff