strict conv test: worked once, buggy again?
[libfirm] / ir / be / test / fehler46.c
1 /* tarval rounding wrong with fp-strict */
2
3 int main()
4 {
5         float cost = 74.739288330078125;
6         double square = cost * cost;
7         //C2 = square;
8         printf("cost: %.20f\n", cost);
9         printf("square: %.20f\n", square);
10         return 0;
11 }