summaryrefslogtreecommitdiff
path: root/mpn_exp.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-06-26 15:47:03 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-06-26 15:47:03 +0000
commit5dd9e591897fe6a63de8bef4b4d043345bc19167 (patch)
treef63e955726b1e6d11ed11066cf7e900a31298046 /mpn_exp.c
parent6f5e416d1ab1ebb42490f44616ace8a0cdc148d4 (diff)
downloadmpfr-5dd9e591897fe6a63de8bef4b4d043345bc19167.tar.gz
mp_exp_unsigned_t -> mpfr_uexp_t (internal type only).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6297 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpn_exp.c')
-rw-r--r--mpn_exp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpn_exp.c b/mpn_exp.c
index b5c05cf28..72ca49e7c 100644
--- a/mpn_exp.c
+++ b/mpn_exp.c
@@ -106,7 +106,7 @@ mpfr_mpn_exp (mp_limb_t *a, mp_exp_t *exp_r, int b, mp_exp_t e, size_t n)
/* FIXME: Could f = 2*f + n * BITS_PER_MP_LIMB be used? */
f = 2*f;
MPFR_SADD_OVERFLOW (f, f, n * BITS_PER_MP_LIMB,
- mp_exp_t, mp_exp_unsigned_t,
+ mp_exp_t, mpfr_uexp_t,
MPFR_EXP_MIN, MPFR_EXP_MAX,
goto overflow, goto overflow);
if ((c[2*n - 1] & MPFR_LIMB_HIGHBIT) == 0)