aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr53695.c
blob: eba0843c4a2fc7cc80dec7867239865bcd02ed9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-ftracer" } */

void
foo (const void **p)
{
  void *labs[] = { &&l1, &&l2, &&l3 };
l1:
  goto *p++;
l2:
  goto *p;
l3:
  ;
}