OSDN Git Service

* gcc.c-torture/compile/labels-2.c: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / labels-2.c
1 struct bp { void *v, *b, *e; };
2 f ()
3 {
4   struct bp x = { &&L2 };
5   if (&&L3 - &&L1 > 1)
6     abort ();
7 L1:return 1;
8 L2:abort ();
9 L3:;
10 }