From: Michael Beck Date: Thu, 6 Sep 2007 15:30:23 +0000 (+0000) Subject: bug in the tarval modul ... X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=693934fa49786172b5be9b6fbc3b1ee4f4a7f9fb;p=libfirm bug in the tarval modul ... [r15700] --- diff --git a/ir/be/test/fehler74.c b/ir/be/test/fehler74.c new file mode 100644 index 000000000..273c05dcd --- /dev/null +++ b/ir/be/test/fehler74.c @@ -0,0 +1,10 @@ +#include +#include + +int main() { + float x = NAN; + double y = x; + + printf("%f\n", y); + return 0; +}