coreboot-libre-fam15h-rdimm/util/romcc/tests/simple_test75.c

22 lines
172 B
C
Raw Normal View History

2024-03-04 11:14:53 +01:00
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();
}