summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2020-03-01 00:19:05 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2020-03-01 00:19:05 +0000
commit750d0a8b371674699cd07d51c35b403b2ac4c7ec (patch)
treed4cabf35003b88dff1cc169707021d2307bc3129
parent64fa8d139a2315a967a935447c29de3fb6a967f8 (diff)
downloadmpfr-750d0a8b371674699cd07d51c35b403b2ac4c7ec.tar.gz
[tests/tsin.c] Replaced obsolete function mpfr_mul_2exp by mpfr_mul_2ui.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@13738 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--tests/tsin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tsin.c b/tests/tsin.c
index c46dac67b..4bfb2c04b 100644
--- a/tests/tsin.c
+++ b/tests/tsin.c
@@ -304,7 +304,7 @@ check_binary128 (void)
}
/* now multiply x by 2, so that it is near an even multiple of pi/2 */
- mpfr_mul_2exp (x, x, 1, MPFR_RNDN);
+ mpfr_mul_2ui (x, x, 1, MPFR_RNDN);
mpfr_cos (y, x, MPFR_RNDN);
mpfr_set_si (z, -1, MPFR_RNDN);
if (! mpfr_equal_p (y, z))