summaryrefslogtreecommitdiff
path: root/mpz/bin_uiui.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2012-05-02 14:33:42 +0200
committerTorbjorn Granlund <tege@gmplib.org>2012-05-02 14:33:42 +0200
commit71a0ddbc954db1d494f136fd84d40ddf28c8e997 (patch)
tree4ad4258a4a665ba1b99edd9522c18c512bbcad86 /mpz/bin_uiui.c
parent9d0afee5d8bfe12fe86700f4619a24facaffb1b0 (diff)
downloadgmp-71a0ddbc954db1d494f136fd84d40ddf28c8e997.tar.gz
Make use of CNST_LIMB.
Diffstat (limited to 'mpz/bin_uiui.c')
-rw-r--r--mpz/bin_uiui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/bin_uiui.c b/mpz/bin_uiui.c
index af8a76c39..bcc4be8de 100644
--- a/mpz/bin_uiui.c
+++ b/mpz/bin_uiui.c
@@ -169,7 +169,7 @@ static const unsigned char tcnttab[] = {0,0,1,1,3,3,4,4,7};
static const unsigned long ftab[] =
#if GMP_NUMB_BITS == 64
/* 1 to 8 factors per iteration */
- {0xfffffffffffffffful,0x100000000ul,0x32cbfe,0x16a0b,0x24c4,0xa16,0x34b,0x1b2 /*,0xdf,0x8d */};
+ {CNST_LIMB(0xffffffffffffffff),CNST_LIMB(0x100000000),0x32cbfe,0x16a0b,0x24c4,0xa16,0x34b,0x1b2 /*,0xdf,0x8d */};
#endif
#if GMP_NUMB_BITS == 32
/* 1 to 7 factors per iteration */