1 /* { dg-lto-options {{-flto -flto-partition=1to1 -O3}} } */
2
3 extern void exit (int);
4 extern void *foo (void);
5
6 void *p;
7
8 int
9 main ()
10 {
11 p = foo ();
12 exit (0);
13 }