summaryrefslogtreecommitdiff
path: root/gmp-impl.h
diff options
context:
space:
mode:
authorTorbjorn Granlund <tg@gmplib.org>2019-12-02 22:52:52 +0100
committerTorbjorn Granlund <tg@gmplib.org>2019-12-02 22:52:52 +0100
commite62f80aa6e8b05afec172da5da331daf84bb3f4d (patch)
treea59f56c9124eb3402e013bb5fadb510f97fdffe4 /gmp-impl.h
parent5ccaf969bad8a1c88f6dc8b38850558cc5584ed9 (diff)
downloadgmp-e62f80aa6e8b05afec172da5da331daf84bb3f4d.tar.gz
Finish change vs fat and gcd_11. Remove gcd_22 from fat functions for now, its calls to gcd_11 are problematic.
Diffstat (limited to 'gmp-impl.h')
-rw-r--r--gmp-impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gmp-impl.h b/gmp-impl.h
index f73618aee..777d24809 100644
--- a/gmp-impl.h
+++ b/gmp-impl.h
@@ -91,8 +91,8 @@ see https://www.gnu.org/licenses/. */
__GMP_DECLSPEC mp_limb_t name (mp_ptr, mp_srcptr, mp_size_t, mp_limb_t)
#define DECL_divrem_1(name) \
__GMP_DECLSPEC mp_limb_t name (mp_ptr, mp_size_t, mp_srcptr, mp_size_t, mp_limb_t)
-#define DECL_gcd_1(name) \
- __GMP_DECLSPEC mp_limb_t name (mp_srcptr, mp_size_t, mp_limb_t)
+#define DECL_gcd_11(name) \
+ __GMP_DECLSPEC mp_limb_t name (mp_limb_t, mp_limb_t)
#define DECL_lshift(name) \
__GMP_DECLSPEC mp_limb_t name (mp_ptr, mp_srcptr, mp_size_t, unsigned)
#define DECL_lshiftc(name) \
@@ -4667,7 +4667,7 @@ struct cpuvec_t {
DECL_copyi ((*copyi));
DECL_divexact_1 ((*divexact_1));
DECL_divrem_1 ((*divrem_1));
- DECL_gcd_1 ((*gcd_1));
+ DECL_gcd_11 ((*gcd_11));
DECL_lshift ((*lshift));
DECL_lshiftc ((*lshiftc));
DECL_mod_1 ((*mod_1));