blob: 92e857c2048c920ed5fe46dbbe333f99e75e3f70 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O3" } */
int a, b, *c;
int f (int j, int k) {
b = k / j;
if (a)
f(0, 0);
*c = f(b & a, 0);
return 0;
}
int main() {
if (a)
while (1)
f(0, 0);
return 0;
}