Since some people disapprove of white space cleanups mixed in regular commits
[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 }