summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-05-27 02:20:51 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-05-27 02:20:51 +0000
commit1440eec274fa425ae8c8908aa17bc8db7a111d80 (patch)
tree91e196a352f81e773663fb4c4974de3bb0e1b60f
parente9ac8e4352ca83164edb55ddc558e86c639db780 (diff)
downloadmpfr-1440eec274fa425ae8c8908aa17bc8db7a111d80.tar.gz
tests/tfmod.c: deleted trailing whitespace.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6241 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--tests/tfmod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tfmod.c b/tests/tfmod.c
index 79cb31085..65b590f48 100644
--- a/tests/tfmod.c
+++ b/tests/tfmod.c
@@ -278,19 +278,19 @@ special (void)
inexact = mpfr_fmod (r, x, y, MPFR_RNDN);
if (!mpfr_nan_p (r) || inexact != 0)
test_failed (r, nan, 0, inexact, x, y, MPFR_RNDN);
-
+
/* fmod (+0, +1) = +0 */
mpfr_set_ui (y, 1, MPFR_RNDN);
inexact = mpfr_fmod (r, x, y, MPFR_RNDN);
if (!mpfr_equal_p (r, x) || inexact != 0)
test_failed (r, x, 0, inexact, x, y, MPFR_RNDN);
-
+
/* fmod (+0, -1) = +0 */
mpfr_neg (y, y, MPFR_RNDN);
inexact = mpfr_fmod (r, x, y, MPFR_RNDN);
if (!mpfr_equal_p (r, x) || inexact != 0)
test_failed (r, x, 0, inexact, x, y, MPFR_RNDN);
-
+
/* fmod (-0, -1) = -0 */
mpfr_neg (x, x, MPFR_RNDN);
inexact = mpfr_fmod (r, x, y, MPFR_RNDN);