]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Add test case for the fucomip probable-bug.
authorJulian Seward <jseward@acm.org>
Sun, 24 Mar 2002 12:06:29 +0000 (12:06 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 24 Mar 2002 12:06:29 +0000 (12:06 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@24

tests/fucomip.c [new file with mode: 0644]

diff --git a/tests/fucomip.c b/tests/fucomip.c
new file mode 100644 (file)
index 0000000..4d24a67
--- /dev/null
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+int main (int, char **)
+{
+  float det = 625.f;
+
+  if (det < 1)
+  {
+    printf ("erm, what ?\n");
+  }
+  return 0;
+}