rt_gccstream/gcc/testsuite/gcc.dg/lto/20090213_0.c

12 lines
158 B
C

/* { dg-lto-do run } */
#include <stdio.h>
extern int foo (int);
main()
{
int x = foo (10);
printf ("x is %d, foo is at 0x%p\n", x, foo);
return 0;
}