1 2 3 4 5 6 7 8 9 10 11
/* { 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; }