blob: a0644831cfdc1cb6b1bc8bded4b4d22513876f44 [file] [log] [blame]
/* { dg-do compile } */
int a, b, d;
char c, e;
void f(void) {
char g = c;
if (b)
goto h;
while (d) {
e = c;
h:
d -= a;
}
}