blob: 6387a0e4716dd1732698a1c1b4d5a0cc408d8f03 [file] [log] [blame]
/* { 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;
}