First version committed to git
[zpugcc/jano.git] / toolchain / gcc / gcc / testsuite / gcc.c-torture / compile / labels-1.c
blobfae6ab8f400ea5565a531f26c0feafdac2fe2364
1 #ifndef NO_LABEL_VALUES
2 f ()
4 void *x = &&L2;
5 if (&&L3 - &&L1 > 1)
6 abort();
7 L1: return 1;
8 L2: abort ();
9 L3:;
11 #else
12 int x;
13 #endif