From: Christoph Mallon Date: Sun, 5 Aug 2007 15:15:57 +0000 (+0000) Subject: fehler60: Endless loop in frontend while constructing binary float operation with... X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=d2175a15758a90dd17c5e9a3138c01503b21bf42;p=libfirm fehler60: Endless loop in frontend while constructing binary float operation with a constant operand. [r15470] --- diff --git a/ir/be/test/fehler60.c b/ir/be/test/fehler60.c new file mode 100644 index 000000000..2bb1373dc --- /dev/null +++ b/ir/be/test/fehler60.c @@ -0,0 +1,10 @@ +float f(float x) +{ + return x * 2.0f; +} + + +int main(void) +{ + return 0; +}