buildgcc: Add option to use ccache
[coreboot.git] / util / romcc / tests / simple_test64.c
1 static void main(void)
2 {
3         static const int foo = 2;
4         switch(foo) {
5         case 1:
6                 break;
7         case 2:
8                 break;
9         default:
10                 break;
11         }
12 }