aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr43186.c
blob: 7171e6ac03a7bf15b80b40abf23bcb93edcf4d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int n;

void foo (int i)
{
  int a, b;

  if (!i)
    for (a = 1; a < 4; a++)
      if (a)
	for (b = 1; b < 3; b++)
	  foo (b);

  n++;
}