aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr43186.c
blob: d235e9730de81d6a7cd44fb2b8ff09b11fbc8761 (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 < 3; a++)
      if (a)
	for (b = 1; b < 3; b++)
	  foo (b);

  n++;
}