Make ICC more happy by spelling -f combo as -fcombo, so it can properly ignore "combo...
[libfirm] / ir / be / test / fehler008.c
1 #include <stdio.h>
2
3 int main(void) {
4
5         float a;
6         float c;
7
8         for (a=0; a<7; a++) {
9                 c = a;
10         }
11
12         printf("%f %f\n", a, c);
13
14         return 0;
15 }