gpt4 book ai didi

C - 使用 -Wall 编译不会警告未初始化的变量

转载 作者:太空狗 更新时间:2023-10-29 15:55:43 31 4
gpt4 key购买 nike

我有一个有缺陷的程序示例,它应该给出一个关于未初始化变量的警告,但是当我编译它时 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

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

有什么想法吗?

编辑:

gcc 版本:

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

最佳答案

您是否在启用优化的情况下进行编译?这是我的 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 的情况下得到了警告。所以这取决于您的编译器版本。

关于C - 使用 -Wall 编译不会警告未初始化的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10541258/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com