blob: 5c9eaf569e7ed3fe00a2002d5930def653b1f934 [file] [log] [blame]
/* { dg-do compile } */
int a;
int b()
{
int c, d;
if (a)
d = b();
return 1 + c + d;
}