blob: 5a99b9d9a8412502e0b9d073013214819a5821fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* PR tree-optimization/90671 */
/* { dg-do compile } */
/* { dg-additional-options "-w -g" } */
int a;
int
main ()
{
int b, c;
for (c = 0; c < 2; c++)
while (a)
if (b)
break;
return 0;
}
|