Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / funcptr-1.c
blobd1f3f525a7c4a3ce7f1626b40a9ee323c2a89bd4
1 extern int (*gp)(const char*);
3 int
4 g (const char* d)
6 __builtin_printf ("g");
7 return 0;
10 void
11 f (void)
13 int errcnt=0;
15 if (gp != g)
17 __builtin_printf ("f");
18 errcnt++;