unsafe mode for float to int conversion
[libfirm] / ir / be / test / fehler43.c
1 //double C2 = 74.739288330078125;
2
3 int main()
4 {
5         float cost = 74.739288330078125;
6         double square = cost * cost;
7         //C2 = square;
8         printf("Res: %.20f\n", square);
9         return 0;
10 }