]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/lto/20081201-2_0.c
* doc/invoke.texi (-fwhopr): Merge into -flto section.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / lto / 20081201-2_0.c
CommitLineData
cbcf2791 1/* { dg-lto-options {{-O3 -flto -flto-partition=1to1}} } */
7bfefa9d 2
3/* Test that cross-TU inlining works. */
4
5extern void abort ();
6extern void exit (int);
7extern void *foo (void);
8
9int
10main ()
11{
12 if (foo () != __builtin_return_address (0))
13 abort ();
14
15 exit (0);
16}