From 570c686f5c475604ec8e4878920d08acd4d5db2a Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Sun, 24 Mar 2002 12:06:29 +0000 Subject: [PATCH] Add test case for the fucomip probable-bug. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@24 --- tests/fucomip.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/fucomip.c diff --git a/tests/fucomip.c b/tests/fucomip.c new file mode 100644 index 0000000000..4d24a67e2f --- /dev/null +++ b/tests/fucomip.c @@ -0,0 +1,12 @@ +#include + +int main (int, char **) +{ + float det = 625.f; + + if (det < 1) + { + printf ("erm, what ?\n"); + } + return 0; +} -- 2.47.3