bug in the tarval modul ...
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 6 Sep 2007 15:30:23 +0000 (15:30 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 6 Sep 2007 15:30:23 +0000 (15:30 +0000)
[r15700]

ir/be/test/fehler74.c [new file with mode: 0644]

diff --git a/ir/be/test/fehler74.c b/ir/be/test/fehler74.c
new file mode 100644 (file)
index 0000000..273c05d
--- /dev/null
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <math.h>
+
+int main() {
+    float x = NAN;
+    double y = x;
+
+    printf("%f\n", y);
+    return 0;
+}