rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20050510-1.c

13 lines
126 B
C

void bar (int k)
{
void *label = (k) ? &&x : &&y;
if (k)
goto *label;
x:
if (k)
dont_remove ();
y:
return;
}