aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr103219.c
blob: cb9023ed8b61c3a372b6e07df8b1f951bf5a81eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* { dg-do compile } */

int f();
void g();
int a, b, c, e;
int d[10];
int main()
{
  if (c)
    if (f())
      {
	g();
	if (e) {
	    a = 0;
	    for (; a != 6; a = a + 2)
	      {
		b = 0;
		for (; b <= 3; b++)
		  d[b] &= 1;
	      }
	}
      }
  return 0;
}