Make ICC more happy by spelling -f combo as -fcombo, so it can properly ignore "combo...
[libfirm] / ir / be / test / fcall.c
1 #include <math.h>
2
3 float a;
4
5 int main()
6 {
7         /* tests for problems in x87 simulator when results of a call are not
8          * used */
9         float b = a;
10         sqrt(a);
11         printf("%f\n", b);
12         return 0;
13 }