blob: 6b7f30e136b131b660788974bddd6e78cc3197dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* { dg-lto-do run } */
/* { dg-lto-options { { -g -O -flto } } } */
int
test (void)
{
int f (void);
return 0;
}
int
main (void)
{
int f (void);
int test (void);
return test ();
}
|