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

int a, b;
void
fn1 ()
{
  int c = 0;
  while (b)
    {
      switch (c)
    case 1:
	fn1 ();
	if (a)
	  c = 1;
	b = 0;
    }
}