2007-04-03 Steven Munroe [BZ #3268] * math/libm-test.inc (fma_test): New tests. diff -urN libc25-cvstip-20070320/math/libm-test.inc libc25/math/libm-test.inc --- libc25-cvstip-20070320/math/libm-test.inc 2007-03-15 15:10:16.000000000 -0500 +++ libc25/math/libm-test.inc 2007-03-30 15:30:26.000000000 -0500 @@ -2766,6 +2766,12 @@ TEST_fff_f (fma, 1.25L, 0.75L, 0.0625L, 1.0L); + TEST_fff_f (fma, 8388609.0L, 8388609.0L, -70368752566272.0L, 8388609.0L); + +#ifdef TEST_DOUBLE + TEST_fff_f (fma, 0x1.0000000000001p+52, 0x1.0000000000001p+52, -0x1.0000000000001p+104, 0x1.0000000000001p+52); +#endif + END (fma); }