diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2002-06-26 23:51:49 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2002-06-26 23:51:49 +0000 |
commit | d63797c4a84006c917de554b6e6cc091b222ecd0 (patch) | |
tree | a9c55ce5342a1d48250e16cf498f74c7d351be57 /set.c | |
parent | d8cf7f38a1586d22933650549d6808c942faf492 (diff) | |
download | mpfr-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 'set.c')
-rw-r--r-- | set.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ /* mpfr_set -- copy of a floating-point number -Copyright 1999, 2001 Free Software Foundation. +Copyright 1999, 2001, 2002 Free Software Foundation. This file is part of the MPFR Library. @@ -66,7 +66,7 @@ mpfr_set4 (mpfr_ptr a, mpfr_srcptr b, mp_rnd_t rnd_mode, int signb) return mpfr_set_overflow(a, rnd_mode, signb); MPFR_EXP(a)++; - ap[(MPFR_PREC(a)-1)/BITS_PER_MP_LIMB] = MP_LIMB_T_HIGHBIT; + ap[(MPFR_PREC(a)-1)/BITS_PER_MP_LIMB] = MPFR_LIMB_HIGHBIT; } } |