Add detection/dump support for ServerEngines SE-SM 4210-P01.
[coreboot.git] / util / romcc / tests / simple_test55.c
1 static void main(void)
2 {
3         static const int sdivisor = 20;
4         const int *pdivisor;
5         unsigned rdpreamble;
6         unsigned divisor;
7         pdivisor = &sdivisor;
8         divisor = *pdivisor;
9         rdpreamble = 0;
10
11         if (divisor == 20) {
12                 rdpreamble = 18;
13         }
14         else {
15                 if (divisor == 15) {
16                         rdpreamble = 16;
17                 }
18                 else {
19                         if (divisor == 12) {
20                                 rdpreamble = 15;
21                         }
22                 }
23         }
24 }