aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr52437.c
blob: 1f6b1b3026babfb0a0ddbd1fa1f167cdcec3b7c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR target/52437 */

int f, g, i, j;

void
fn1 ()
{
  for (;;)
    {
      fn2 ();
      j = 1;
      for (i = 0; i <= 3; i++)
	{
	  for (g = 1; g >= 0; g--)
	    f = 0, j &= 11;
	}
    }
}