PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr58640.c
blob7786b8d0c9fde7fe2a7e9e019cb1d7e762215ffc
1 int a, b, c, d = 1, e;
3 static signed char
4 foo ()
6 int f, g = a;
8 for (f = 1; f < 3; f++)
9 for (; b < 1; b++)
11 if (d)
12 for (c = 0; c < 4; c++)
13 for (f = 0; f < 3; f++)
15 for (e = 0; e < 1; e++)
16 a = g;
17 if (f)
18 break;
20 else if (f)
21 continue;
22 return 0;
24 return 0;
27 int
28 main ()
30 foo ();
31 exit (0);