4

初期化されていない変数について1つだけ警告を表示する欠陥のあるプログラムの例がありますが、コンパイルしても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チュートリアルの同様の例では、ZedShawに正しく警告しているようです)。これは私が最初に試した例であり、期待どおりに機能していないことに気づきました。

何か案は?

編集:

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

Clangを使用してください。GCC のバグのようです。Clang が本来あるべきように警告するためです。

于 2012-05-30T12:56:53.497 に答える
0

C 標準では、初期化されていない変数がアクセスされたときにコンパイラが警告する必要はありません。プログラムが未定義の動作を呼び出した場合、コンパイラは警告する必要さえありません (構文エラーや制約違反がないことを前提としています)。

を使用gccすると、初期化されていない変数の警告を有効にできます-Wuninitialized。他の人が指摘したように、 の最近のバージョンではgcc、が指定されている-Wuninitialized場合に有効になり-Wallます。

于 2012-05-10T20:05:27.557 に答える