| /* { dg-do compile } */ | |
| /* { dg-options "-fno-tree-dominator-opts -fno-tree-ccp -fno-tree-vrp -fno-tree-fre -fno-tree-pre -fno-code-hoisting -O2 -Wuninitialized -Werror=uninitialized -Wno-error=maybe-uninitialized" } */ | |
| void blah(); | |
| void bar (int); | |
| int gflag; | |
| void foo() | |
| { | |
| int v; | |
| if (gflag) | |
| v = 10; | |
| blah(); /* *gflag may be killed, but compiler won't know */ | |
| if (gflag) | |
| bar(v); /* { dg-warning "uninitialized" "should not be promoted to error" } */ | |
| } |