From d2175a15758a90dd17c5e9a3138c01503b21bf42 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 5 Aug 2007 15:15:57 +0000 Subject: [PATCH] fehler60: Endless loop in frontend while constructing binary float operation with a constant operand. [r15470] --- ir/be/test/fehler60.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ir/be/test/fehler60.c 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; +} -- 2.20.1