summaryrefslogtreecommitdiff
path: root/tests/tpow.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-10-31 15:46:57 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2007-10-31 15:46:57 +0000
commit372150de4abc28b77975ac54eb2a67cb343a45dc (patch)
tree6c069b6269cefd69dc6594a1d360ab761ef9c10d /tests/tpow.c
parent5c06717a432d9017d47ed8a48cd56ebd9a1eb396 (diff)
downloadmpfr-372150de4abc28b77975ac54eb2a67cb343a45dc.tar.gz
Untabified and removed trailing spaces.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4933 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tpow.c')
-rw-r--r--tests/tpow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tpow.c b/tests/tpow.c
index 46098fce2..0d7bac438 100644
--- a/tests/tpow.c
+++ b/tests/tpow.c
@@ -665,7 +665,7 @@ special ()
mpfr_set_str (x, "-1.5", 10, GMP_RNDN);
inex = mpfr_pow (z, x, y, GMP_RNDN);
MPFR_ASSERTN(mpfr_inf_p (z) && MPFR_IS_POS (z) && inex > 0);
-
+
/* (-n)^1.5 = NaN for n even */
mpfr_neg (y, y, GMP_RNDN);
mpfr_set_str (x, "1.5", 10, GMP_RNDN);
@@ -678,7 +678,7 @@ special ()
mpfr_set_str (y, "-1.5", 10, GMP_RNDN);
inex = mpfr_pow (z, x, y, GMP_RNDN);
MPFR_ASSERTN(mpfr_nan_p (z));
-
+
mpfr_set_emin (emin);
mpfr_set_emax (emax);
mpfr_clear (x);