blob: 1ad87bd2a0d79f3ff8279ac6b7e9cee3a3025812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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();
}
|