PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git] / gcc / testsuite / gcc.dg / lto / 20090213_0.c
blobf36c890aec51aa94f9b136dcba5e8aaec036d219
1 /* { dg-lto-do run } */
2 #include <stdio.h>
4 extern int foo (int);
6 int
7 main()
9 int x = foo (10);
10 printf ("x is %d, foo is at 0x%p\n", x, foo);
11 return 0;