blob: b512e6db7cae320d4805b51bcb519188817aee5a [file] [log] [blame]
/* { 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;
}