1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* { dg-do compile } */ int a, b, c, d; void e() { int f = b; if (a) { L1: a = 0; L2: if (a) { c = b; goto L1; } } if (d) goto L2; }