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

int a, d, e, f, g, h;
static int b[][6] = { {0}, {0}, {1, 1}, {1} };

void
fn1 ()
{
  for (; f; f++)
    if (g)
      {
	for (e = 0; e < 5; e++)
	  if (b[e + 2][1])
	    {
	      h = b[2][e] ? 0 : a;
	      d |= 4;
	    }
	  else
	    return;
      }
}