summaryrefslogtreecommitdiff
path: root/sinh.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-02-14 11:36:40 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-02-14 11:36:40 +0000
commit5bd7aef7971df1929222d93b437d9392b935c1ff (patch)
tree1c45bd97c1c8108047ad7b8e9e0f80257fdad549 /sinh.c
parentc834099818b8b339bf59918257c2197e49a3ca1d (diff)
downloadmpfr-5bd7aef7971df1929222d93b437d9392b935c1ff.tar.gz
mpfr_{div,mul}_2exp -> mpfr_{div,mul}_2ui.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1699 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'sinh.c')
-rw-r--r--sinh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sinh.c b/sinh.c
index fba85da0f..aa9bc5c9a 100644
--- a/sinh.c
+++ b/sinh.c
@@ -107,7 +107,7 @@ mpfr_sinh (mpfr_ptr y, mpfr_srcptr xt, mp_rnd_t rnd_mode)
mpfr_exp(te,x,GMP_RNDD); /* exp(x) */
mpfr_ui_div(ti,1,te,GMP_RNDU); /* 1/exp(x) */
mpfr_sub(t,te,ti,GMP_RNDN); /* exp(x) - 1/exp(x)*/
- mpfr_div_2exp(t,t,1,GMP_RNDN); /* 1/2(exp(x) - 1/exp(x))*/
+ mpfr_div_2ui(t,t,1,GMP_RNDN); /* 1/2(exp(x) - 1/exp(x))*/
/* calculation of the error*/
d = MPFR_EXP(te)-MPFR_EXP(t)+2;