From: Julian Seward Date: Sun, 24 Mar 2002 12:06:29 +0000 (+0000) Subject: Add test case for the fucomip probable-bug. X-Git-Tag: svn/VALGRIND_1_0_3~422 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=570c686f5c475604ec8e4878920d08acd4d5db2a;p=thirdparty%2Fvalgrind.git Add test case for the fucomip probable-bug. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@24 --- 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; +}