aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/20081118_1.c
blob: f0a8c3c876b9012093c680550a10bf6fdaac8651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
extern int f (void);

extern inline int
e_inline_baz (void)
{
 return 2 + f ();
}

int
foo (void)
{
 return e_inline_baz ();
}