1 /* { dg-do compile } */
2 
3 int a, b, c, d;
4 
foo()5 void foo ()
6 {
7   int e;
8 
9 lbl:
10   for (c = 0; c < 2; c++)
11     {
12       e = d;
13       for (; a; a++)
14 	{
15 	  d = e;
16 	  if (b)
17 	    goto lbl;
18 	}
19     }
20 }
21