aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/950613-1.c
blob: 8aa757f476cc2c104ac14f8959b3acebd12ebc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef NO_LABEL_VALUES
f ()
{
  long *sp;
  long *pc;

  static void *dummy[] =
    {
      &&L1,
      &&L2,
    };

 L1:
  {
    float val;
    val = *(float *) sp;
    val = -val;
    *(float *) sp = val;
    goto *pc++;
  }

 L2:
  {
    float from;
    *(long long *) sp = from;
    goto *pc++;
  }
}
#else
int x;
#endif