blob: d5de3bdb39e5e93fa25f657632e8887f02bb52f6 [file] [log] [blame]
/* { dg-do compile } */
int printf (char *, ...);
int a, b, c, d;
void e () {
int f = a;
if (b) {
L1:
b = 0;
L2:
if (c) {
if (f)
printf("0");
goto L1;
}
}
if (d)
goto L2;
}