aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/921021-1.c
blob: 18dffeb9dd3472e586eb0cf184a78d00eaaeb13b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void g();

f()
{
int x=1;
while(x)
{
x=h();
if(x)
g();
}
}