blob: ae28a3ce1a305452bb9d55a604880eb5ab9d1236 [file] [log] [blame]
static void goto_test(void)
{
int i;
i = 0;
goto bottom;
{
top:
i = i + 1;
}
bottom:
if (i < 10) {
goto top;
}
;
}
static void main(void)
{
goto_test();
}