OSDN Git Service

2004-10-05 Andrew Pinski <pinskia@physics.uc.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 920415-1.c
1 #ifndef NO_LABEL_VALUES
2 f ()
3 {
4   __label__ l;
5   void *x()
6     {
7       return &&l;
8     }
9   goto *x ();
10   abort ();
11   return;
12  l:
13   exit (0);
14 }
15 #else
16 int x;
17 #endif