- Update romcc to version 0.37
[coreboot.git] / util / romcc / tests / simple_test71.c
1 static void foo(void)
2 {
3         __builtin_outl(22, 0x5678);
4 }
5 static void main(void)
6 {
7         int i;
8
9 #if 1
10         foo();
11 #endif
12 #if 1
13         foo();
14 #endif
15         for(i = 0; i < 10; i++) {
16 #if 1
17                 foo();
18 #endif
19 #if 0
20                 foo();
21 #endif
22                 __builtin_outl(i, 0x1234);
23         }
24
25 }