Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When compiling my project with gcc and the -Wall option, I get a warning about a statement with no effect in the non-existant last line of my flex file:

Warning:

gcc -Wall -O0 -ggdb3 -DNOSUDO -DJOBC -DDEBUG -c lex.yy.c
tokenizer.l: In function ‘yylex’:
tokenizer.l:179: warning: statement with no effect

Shell Command:

$ wc -l tokenizer.l
178 tokenizer.l

Last part of lex file:

; {
    return SEMI;
}

Anyone know why I might be getting this warning?

If I suppress all #line Directives, the error is:

lex.yy.c: In function ‘yylex’:
lex.yy.c:1021: warning: statement with no effect

Which refers to the ECHO line in:

case 30:
YY_RULE_SETUP
ECHO;
    YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(inQuote):
case YY_STATE_EOF(inWord):
    yyterminate();
share|improve this question
Quoting the first semi colon doesn't make a difference. – Kyle Brandt Oct 30 '09 at 15:21
1  
Its only a warning , please don't add needless, useless (and obviously never reached) code just to tell gcc to STFU. Its much, much easier (and more gratifying) to simply tell gcc to STFU out loud, verbally. – Tim Post Oct 31 '09 at 13:52

4 Answers

up vote 4 down vote accepted

In general, you'll get that error from any lex rule that has an unconditional 'return' in it, because flex ends up generating code that looks like (after macro expansion):

case xxx:
    return SEMI;
    break;

The problem being that the 'break' is unreachable. It needs to be there in case your rule does not return (so the code won't fall through to the code for the next token, but will instead go on to recognize the next token.) Flex isn't smart enough to actually parse your rule code and do flow analysis to determine when the break is unneeded, so it just always puts it there. In general, using -Wall on the output of flex (or bison) will give you lots of warnings like this...

share|improve this answer
What is an unconditional return? In this case, the ECHO macro seems to be do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) //So does this apply? So is there really no need for -Wall when compiling flex or Bison's output files into objects? – Kyle Brandt Oct 30 '09 at 19:54
An 'unconditional return' is a 'return' that's not part of an 'if', so it will always be executed if the 'case' matches. – Chris Dodd Nov 3 '09 at 2:46

I guess it feels that ; is a statement with no effect. Try quoting it:

";" {
    return SEMI;
}
share|improve this answer
Had already tried that.. but thanks :-) – Kyle Brandt Oct 30 '09 at 13:02
I should also add I haven't seen any signs of anything wrong because of this warning. – Kyle Brandt Oct 30 '09 at 13:03

I ran into the same problem and looked a bit into it. It turned out that one of my "#includes" in the flex source file (the .l file) somehow indirectly included the standard library termios.h file, which defines a macro named "ECHO" (as "0000010"). The source file generated by flex on the other hand also wants to create a macro named "ECHO", there is an "#ifndef ECHO" before that. But of course, with termios.h included, that "ifndef" evaluates to false and ECHO wasn't defined as intended. That led to the error.

Long explanation, short solution: I put

#ifdef ECHO
#undef ECHO
#endif

below all my includes in my .l file, and that did the trick.

I know this discussion thread is already a bit old, but it turned up first when I googled the warning, so my contribution might still be useful for folks.

share|improve this answer

As the other answers said, the trouble is that a 'break' after a 'return' can't be reached.

It used to be possible to satisfy a compiler that there was a way to get to the 'break' by faking a conditional return:

if (1) return SEMI;

I have a suspicion that some modern compilers are clever enough to see through this - which is actually counter-productive of them. "Yes, you're right, Mr Compiler, but I can't avoid it so STFU".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.