aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr102645.c
blob: f2e0f44ddcd7ab29844e97ad26155bf6a1e3f4bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR tree-optimization/102645 */

volatile int a[1], d;
int b, c;

int
main ()
{
  if (b && c)
    for (c = 0; c < 3; c++)
      {
	for (int e = 0; e < 6; e++)
	  for (int f = 0; f < 12; f++)
	    d && a[0];
	continue;
      }
  return 0;
}