aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20050510-1.c
blob: 288a60f6b8dd554c7be0a421a6839235c8ffc1d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-require-effective-target indirect_jumps } */
/* { dg-require-effective-target label_values } */

void dont_remove (void);

void bar (int k)
{
  void *label = (k) ? &&x : &&y;
  if (k)
    goto *label;

x:
  if (k)
    dont_remove ();
y:
  return;
}