vote up 2 vote down star
1

In gcc, certain warnings require optimization to be enabled. For example:

int foo() {
    int x;
    return x;
}

In order to detect the uninitialized variable, -O must be passed.

$ gcc -W -Wall -c test.c
$ gcc -W -Wall -c test.c -O
test.c: In function ‘foo’:
test.c:3: warning: ‘x’ is used uninitialized in this function

However, this can interfere with debugging. Is there a way to enable just the analysis phases needed for warnings (and not just this particular warning, but as many as possible), without affecting the generated code too much?

I'm using gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) on x86-64.

flag

3  
The silly answer would be to compile it with -O for the warnings, and then without it for debugging. I really hope there is a better way though. – Zifre May 20 at 0:17
The reason gcc doesn't issue that warning without -O is that it doesn't do data-flow analysis without -O. So you're asking it to do the DFA, but discard the results other than using them to issue warnings. This would take about as long as compiling with -O, although hopefully not as long as Zifre's suggestion. But I don't know of any way to make gcc do it, and the man page implies it is impossible. – Steve Jessop May 20 at 0:29
-O is fast enough, I'm just hoping it won't muck up debugging. Suggestions on how to enable specific optimization phases that won't break gdb, but will perform warning analysis are welcome too. – bdonlan May 20 at 0:35

3 Answers

vote up 2 vote down check

Try using -Wall instead of -W. -W is deprecated IIRC. (As Jonathan Leffler points out in a comment, -W's replacement is -Wextra, not -Wall.)

[Edit]

-Wunused-variable
Warn whenever a local variable or non-constant static variable is unused aside from its declaration. This warning is enabled by -Wall.

http://gcc.gnu.org/onlinedocs/gcc-4.4.0/gcc/Warning-Options.html#Warning-Options

[Edit]

This behavior has changed in GCC 4.4:

Uninitialized warnings do not require enabling optimization anymore, that is, -Wuninitialized can be used together with -O0. Nonetheless, the warnings given by -Wuninitialized will probably be more accurate if optimization is enabled.

link|flag
As shown in my example above, passing -W -Wall is insufficient to perform dataflow analysis with optimization disabled – bdonlan May 20 at 0:33
I don't have this problem. Whenever I use -Wall, I get the warning (but not with -W). Which GCC version are you using? – Bastien Léonard May 20 at 0:41
1  
@Bastien: aha - you changed the code. You made x completely unreferenced, and got the unused variable warning. bdonlan is after the uninitialized warning. – Steve Jessop May 20 at 0:58
1  
Got it, it's new in 4.4. See here, under the title “C family”: gcc.gnu.org/gcc-4.4/changes.html. – Bastien Léonard May 20 at 1:00
1  
-W is deprecated; its replacement is -Wextra, though, not -Wall. – Jonathan Leffler May 20 at 5:12
show 6 more comments
vote up 0 vote down

This is what you have your automated build for. Let your automated build engine build with -Werror -Wall -O2, and you'll catch all the warnings triggered by higher optimization levels.

link|flag
For small hobby projects, I don't necessarily have an automated build engine... – bdonlan May 20 at 5:02
Why not? You like pain? – Jonathan Leffler May 20 at 5:12
A system such as Hudson is really easy to setup and configure, you can without problem use it even for small hobby projects. – JesperE May 20 at 7:00
vote up 0 vote down

DDD and gdb can mostly cope with code compiled with gcc -O -g. Sometimes variables aren't in scope when you expect them to be, but DDD is clever enough to say "optimized away" instead of freaking out. But there's no question it's easier to debug with -O turned off—I have seen this a lot with my students' code.

link|flag

Your Answer

Get an OpenID
or

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