Add detection/dump support for ServerEngines SE-SM 4210-P01.
[coreboot.git] / util / romcc / tests / fail_test3.c
1 static void main(void)
2 {
3         volatile unsigned long *val = (volatile unsigned long *)0x1234;
4         int i;
5         if (val[0] > 25) {
6                 i = 7;
7         }
8         val[1] = i;
9
10 }