我在使用gcc-4.7 (Ubuntu/Linaro 4.7.2-11precise2) 4.7.2
. 我无法在没有警告的情况下编译以下有效代码:
extern void dostuff(void);
int test(int arg1, int arg2)
{
int ret;
if (arg1) ret = arg2 ? 1 : 2;
dostuff();
if (arg1) return ret;
return 0;
}
编译选项和输出:
$ gcc-4.7 -o test.o -c -Os test.c -Wall
test.c: In function ‘test’:
test.c:5:6: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized]
但是,以下代码编译时没有警告(尽管汇编效率稍低):
extern void dostuff(void);
int test(int arg1, int arg2)
{
int ret;
if (arg1 && arg2) ret = 1;
if (arg1 && !arg2) ret = 2;
dostuff();
if (arg1) return ret;
return 0;
}
我有点卡住了,正在考虑这是一个编译器错误。有什么想法吗?