blob: fd8046f217d18a2b1d8772f0b359a7a1e1ed46e2 [file] [log] [blame]
/* PR tree-optimization/69209 */
int a, c, *d, e;
void foo (void) __attribute__ ((__noreturn__));
int
bar (void)
{
int f;
if (a)
{
if (e)
foo ();
foo ();
}
if (d != &f)
foo ();
if (!c)
foo ();
return f;
}
void
baz ()
{
bar ();
}