4

我有一个示例有缺陷的程序,它应该给出一个关于未初始化变量的警告,但是当我编译它时 gcc 并没有给我任何警告。

这是代码:

#include <stdio.h>

int main()
{
    int foo;

    printf("I am a number: %d \n", foo);

    return 0;
}

这是我运行的:cc -Wall testcase.c -o testcase

我没有得到任何反馈。据我所知,这应该产生:

testcase.c: In function 'main': 
testcase.c:7: warning: 'foo' is used uninitialized in this function

在他的 C 教程中的一个类似示例中,它似乎正确地警告了 Zed Shaw )。这是我第一次尝试并注意到它没有按预期工作的示例。

有任何想法吗?

编辑:

gcc 版本:

i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)
4

4 回答 4

8

您是否在打开优化的情况下进行编译?这是我的man gcc页面所说的:

  -Wuninitialized
       Warn if an automatic variable is used without first being
       initialized or if a variable may be clobbered by a "setjmp" call.

      These warnings are possible only in optimizing compilation, because
       they require data flow information that is computed only when
       optimizing.  If you do not specify -O, you will not get these
       warnings. Instead, GCC will issue a warning about -Wuninitialized
       requiring -O.

我的 gcc 版本是:

i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)

实际上,我只是在 gcc 4.4.5 上尝试过这个,但我确实在不使用-O. 所以这取决于你的编译器版本。

于 2012-05-10T20:01:07.937 回答
2

更新你的编译器。

$ cat test.c
#include <stdio.h>

int main(void)
{
    int foo;
    printf("I am a number: %d \n", foo);
    return 0;
}
$ gcc -Wall -o test ./test.c
./test.c: In function ‘main’:
./test.c:7:11: warning: ‘foo’ is used uninitialized in this function [-Wuninitialized]
$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6.1/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.1-9ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) 
$ 
于 2012-05-10T20:01:49.997 回答
0

C 标准不要求编译器在访问未初始化的变量时发出警告。如果程序调用未定义的行为(假设没有语法错误并且没有违反约束),编译器甚至不需要发出警告。

您可以使用gcc为未初始化的变量启用警告-Wuninitialized。正如其他人指出的那样,在指定时启用最新版本的gcc, 。-Wuninitialized-Wall

于 2012-05-10T20:05:27.557 回答
0

使用Clang,完成它。似乎是 GCC 中的一个错误,因为 Clang 会发出应有的警告。

于 2012-05-30T12:56:53.497 回答