summaryrefslogtreecommitdiff
path: root/round_prec.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-06-26 23:51:49 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-06-26 23:51:49 +0000
commitd63797c4a84006c917de554b6e6cc091b222ecd0 (patch)
treea9c55ce5342a1d48250e16cf498f74c7d351be57 /round_prec.c
parentd8cf7f38a1586d22933650549d6808c942faf492 (diff)
downloadmpfr-d63797c4a84006c917de554b6e6cc091b222ecd0.tar.gz
MP_LIMB_T_HIGHBIT -> MPFR_LIMB_HIGHBIT.
MPFR is now compatible with GMP 4.1. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1955 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'round_prec.c')
-rw-r--r--round_prec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/round_prec.c b/round_prec.c
index 95c4889a2..3b6df663b 100644
--- a/round_prec.c
+++ b/round_prec.c
@@ -198,7 +198,7 @@ mpfr_round_prec (mpfr_ptr x, mp_rnd_t rnd_mode, mp_prec_t prec)
else
{
MPFR_EXP(x)++;
- xp[nw - 1] = MP_LIMB_T_HIGHBIT;
+ xp[nw - 1] = MPFR_LIMB_HIGHBIT;
if (nw - 1 > 0)
MPN_ZERO(xp, nw - 1);
}