aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20050510-1.c
blob: 3570f4f35b442aba7e581f4dd180de7b8c766954 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void bar (int k)
{
  void *label = (k) ? &&x : &&y;
  if (k)
    goto *label;

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