bug in the tarval modul ...
[libfirm] / ir / be / test / fehler74.c
1 #include <stdio.h>
2 #include <math.h>
3
4 int main() {
5     float x = NAN;
6     double y = x;
7
8     printf("%f\n", y);
9     return 0;
10 }