OSDN Git Service

* gcc.c-torture/compile/20021120-1.c: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 950613-1.c
1 #ifndef NO_LABEL_VALUES
2 f ()
3 {
4   long *sp;
5   long *pc;
6
7   static void *dummy[] =
8     {
9       &&L1,
10       &&L2,
11     };
12
13  L1:
14   {
15     float val;
16     val = *(float *) sp;
17     val = -val;
18     *(float *) sp = val;
19     goto *pc++;
20   }
21
22  L2:
23   {
24     float from;
25     *(long long *) sp = from;
26     goto *pc++;
27   }
28 }
29 #else
30 int x;
31 #endif