blob: b37eb31a46db1177e1bd2f45cde15f9803e7831c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* { dg-lto-options {{-O2 -DOPTIMIZE -flto -flto-partition=1to1} {-O0 -flto -flto-partition=1to1}} } */
extern void abort (void);
extern int f (void);
extern inline int
e_inline_baz (void)
{
return 1 + f();
}
int
bar (void)
{
return e_inline_baz ();
}
main ()
{
#ifdef OPTIMIZE
if (bar () != 2 || foo () != 3)
abort ();
#else
if (bar () != 0 || foo () != 0)
abort ();
#endif
return 0;
}
|