1 /* { dg-do compile } */
2
3 int a;
4 void
5 f (void)
6 {
7 if (!a);
8 else
9 lbl:
10 a = a;
11
12 if (a)
13 a = 8;
14 goto lbl;
15 }