Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr64091.c
blob0cd994aede88b157d5153c30f8d1d840608c985c
1 /* { dg-do compile } */
2 /* { dg-additional-options "-g" } */
4 extern int foo(void);
6 int main(void)
8 int i, a, b;
10 if (foo())
11 return 0;
13 for (i = 0, a = 0, b = 0; i < 3; i++, a++)
15 if (foo())
16 break;
18 if (b += a)
19 a = 0;
22 if (!a)
23 return 2;
25 b += a;
27 return 0;