aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/labels-2.c
blob: cf4f116e6a86eb6b22d66a4c1eecaf25cf60be4a (plain)
1
2
3
4
5
6
7
8
9
10
struct bp { void *v, *b, *e; };
f ()
{
  struct bp x = { &&L2 };
  if (&&L3 - &&L1 > 1)
    abort ();
L1:return 1;
L2:abort ();
L3:;
}