blob: ae28a3ce1a305452bb9d55a604880eb5ab9d1236 [file] [log] [blame]
Eric Biederman90089602004-05-28 14:11:54 +00001static void goto_test(void)
2{
3 int i;
Stefan Reinauer14e22772010-04-27 06:56:47 +00004
Eric Biederman90089602004-05-28 14:11:54 +00005 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
18static void main(void)
19{
20 goto_test();
21}