aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr84425.c
blob: 5d3d325aa2324f1fc306421cb50054d4c1bd24c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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);
}