blob: e53ccd655bbaab34049e9ca72f954d4a0cefa03c [file] [log] [blame]
/* PR rtl-optimization/16643 */
void foo (int a, int b, int c, int d, int e, int *f)
{
if (a == 0)
if (b == 0)
if (c == 0)
if (d == 0)
{
*f = e;
return;
}
*f = e;
return;
}