blob: 5d3d325aa2324f1fc306421cb50054d4c1bd24c1 [file] [log] [blame]
/* PR ipa/84425 */
void bar (int);
void
foo (int x)
{
if (x < 5)
bar (x);
}
__attribute__((optimize(0))) void
bar (int x)
{
if (x > 10)
foo (x);
}