1ad87bd2a0d79f3ff8279ac6b7e9cee3a3025812
[coreboot.git] / util / romcc / tests / simple_test75.c
1 static void goto_test(void)
2 {
3         int i;
4         
5         i = 0;
6         goto bottom;
7         {
8         top:
9                 i = i + 1;
10         }
11  bottom:
12         if (i < 10) {
13                 goto top;
14         }
15         ;
16 }
17
18 static void main(void)
19 {
20         goto_test();
21 }