summaryrefslogtreecommitdiff
path: root/tests/tl2b.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2010-01-08 19:13:48 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2010-01-08 19:13:48 +0000
commit1f7f06d17a7f5bacaa40d8cea4237ffe094ef433 (patch)
tree97fdc324d0ae9640c439df546f625d8a15ad50fe /tests/tl2b.c
parent8f36df5d6bf5f20f4c4e60e9ac22e9d4d4a6508e (diff)
downloadmpfr-1f7f06d17a7f5bacaa40d8cea4237ffe094ef433.tar.gz
BITS_PER_MP_LIMB -> GMP_LIMB_BITS
got rid of BYTES_PER_MP_LIMB in configure.in (no longer defined by GMP) Note[VL] (mpfr-impl.h): a mpn_sqr_n() macro is defined to use mpn_mul if it is not already defined (in gmp-impl.h from GMP 4.x). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6644 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tl2b.c')
-rw-r--r--tests/tl2b.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tl2b.c b/tests/tl2b.c
index 5bd69bcb5..fb75e24b0 100644
--- a/tests/tl2b.c
+++ b/tests/tl2b.c
@@ -48,7 +48,7 @@ print_mpfr (mpfr_srcptr x, const char *name)
{ fprintf (stderr, "Error in printf\n"); exit (1); }
for (i = 0; i < size_of_bits2use; i++)
{
- if (printf ("#elif BITS_PER_MP_LIMB == %d\n"
+ if (printf ("#elif GMP_LIMB_BITS == %d\n"
"const mp_limb_t %s__tab[] = { 0x", bits2use[i], name) < 0)
{ fprintf (stderr, "Error in printf\n"); exit (1); }
size = mpn_get_str (temp, 256, MPFR_MANT (x), MPFR_LIMB_SIZE (x));