Make ICC more happy by spelling -f combo as -fcombo, so it can properly ignore "combo...
[libfirm] / ir / be / test / volatile.c
1
2 volatile int i;
3 volatile float f;
4
5 int main()
6 {
7         /* access */
8         (void) i;
9         (void) f;
10
11         /* store */
12         i = 5;
13         f = 2.4f;
14
15         return 0;
16 }