aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/materialize-1_0.c
blob: 1751d65d293ce1123388a1e14d817e5c9681b909 (plain)
1
2
3
4
5
6
7
8
/* { dg-lto-options {{ -O3 -flto -flto-partition=1to1}} } */
/* { dg-lto-do run } */
extern void clone_me (int, int);
int a=15;
inline int inline_me ()
{
  clone_me (0,a);
}