blob: c9f4c803f3a8c9784b381a6f0cb0c887b38af10e (
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
29
30
31
32
|
/* { dg-lto-options {{-O2 -DOPTIMIZE -flto -flto-partition=1to1} {-O0 -flto -flto-partition=1to1}} } */
extern void abort (void);
int f (void)
{
return 1;
}
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;
}
|