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

17 lines
113 B
C

f ()
{
do
{
if (0)
{
L1:;
}
else
goto L2;
L2:;
}
while (0);
goto L1;
}