aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/20081202-2_0.c
blob: 9d34f740b362030640ced29fdaaefb210c98d179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-lto-options {{-flto -flto-partition=1to1 -O3}} } */

extern void exit (int);
extern void *foo (void);

void *p;

int
main ()
{
  p = foo ();
  exit (0);
}