summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-plugin/lto-18b.c
blob: ca78bbf216d3924a590b4c95fe7329c66941540e (plain)
1
2
3
4
5
6
7
8
extern int f2 (int);

int f1 (int x)
{
  if (x > 0)
    return x * f2 (x - 1);
  return 1;
}