summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/lto/chkp-privatize-1_1.c
blob: 4fa8656d9a3f0444b310c9bdc2836b46c8e92913 (plain)
1
2
3
4
5
6
7
8
9
10
11
static int __attribute__((noinline))
f2 (int i)
{
  return 2 * i;
}

int __attribute__((noinline))
f1 (int i)
{
  return f2 (i) + 10;
}