summaryrefslogtreecommitdiff
path: root/gmp-impl.h
diff options
context:
space:
mode:
authorMarco Bodrato <bodrato@mail.dm.unipi.it>2015-05-15 08:00:27 +0200
committerMarco Bodrato <bodrato@mail.dm.unipi.it>2015-05-15 08:00:27 +0200
commit9d3d9d9e4c10e9b01467a1c4908e8a3b88004fb0 (patch)
treeec07e9e4842e281565238e97f772bfd8a91f9a95 /gmp-impl.h
parent792ffc717a22821a1551633eb4fc97aac622580b (diff)
downloadgmp-9d3d9d9e4c10e9b01467a1c4908e8a3b88004fb0.tar.gz
mpn/generic/invertappr.c (mpn_ni_invertappr): Reduce memory used (and related updates)
Diffstat (limited to 'gmp-impl.h')
-rw-r--r--gmp-impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gmp-impl.h b/gmp-impl.h
index 0ab21c04e..db330effc 100644
--- a/gmp-impl.h
+++ b/gmp-impl.h
@@ -1466,7 +1466,7 @@ __GMP_DECLSPEC void mpn_invert (mp_ptr, mp_srcptr, mp_size_t, mp_ptr);
__GMP_DECLSPEC mp_limb_t mpn_ni_invertappr (mp_ptr, mp_srcptr, mp_size_t, mp_ptr);
#define mpn_invertappr __MPN(invertappr)
__GMP_DECLSPEC mp_limb_t mpn_invertappr (mp_ptr, mp_srcptr, mp_size_t, mp_ptr);
-#define mpn_invertappr_itch(n) (2 * (n) + 4)
+#define mpn_invertappr_itch(n) (2 * (n))
#define mpn_binvert __MPN(binvert)
__GMP_DECLSPEC void mpn_binvert (mp_ptr, mp_srcptr, mp_size_t, mp_ptr);