Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/lgpl3/gmp/lib/libgmp/arch/x86_64 regen gmp parts fo...
details: https://anonhg.NetBSD.org/src/rev/aa94454aaca3
branches: trunk
changeset: 984580:aa94454aaca3
user: mrg <mrg%NetBSD.org@localhost>
date: Mon Jul 12 07:04:37 2021 +0000
description:
regen gmp parts for amd64 and gmp 6.2.1.
diffstat:
external/lgpl3/gmp/lib/libgmp/arch/x86_64/config.h | 6 +++---
external/lgpl3/gmp/lib/libgmp/arch/x86_64/config.m4 | 1 +
external/lgpl3/gmp/lib/libgmp/arch/x86_64/gmp.h | 11 ++++++-----
3 files changed, 10 insertions(+), 8 deletions(-)
diffs (77 lines):
diff -r 2545db68d163 -r aa94454aaca3 external/lgpl3/gmp/lib/libgmp/arch/x86_64/config.h
--- a/external/lgpl3/gmp/lib/libgmp/arch/x86_64/config.h Mon Jul 12 04:41:14 2021 +0000
+++ b/external/lgpl3/gmp/lib/libgmp/arch/x86_64/config.h Mon Jul 12 07:04:37 2021 +0000
@@ -548,7 +548,7 @@
#define PACKAGE_NAME "GNU MP"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "GNU MP 6.2.0"
+#define PACKAGE_STRING "GNU MP 6.2.1"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gmp"
@@ -557,7 +557,7 @@
#define PACKAGE_URL "http://www.gnu.org/software/gmp/"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "6.2.0"
+#define PACKAGE_VERSION "6.2.1"
/* Define as the return type of signal handlers (`int' or `void'). */
#define RETSIGTYPE void
@@ -590,7 +590,7 @@
/* #undef TUNE_SQR_TOOM2_MAX */
/* Version number of package */
-#define VERSION "6.2.0"
+#define VERSION "6.2.1"
/* Define to 1 to enable ASSERT checking, per --enable-assert */
/* #undef WANT_ASSERT */
diff -r 2545db68d163 -r aa94454aaca3 external/lgpl3/gmp/lib/libgmp/arch/x86_64/config.m4
--- a/external/lgpl3/gmp/lib/libgmp/arch/x86_64/config.m4 Mon Jul 12 04:41:14 2021 +0000
+++ b/external/lgpl3/gmp/lib/libgmp/arch/x86_64/config.m4 Mon Jul 12 07:04:37 2021 +0000
@@ -19,6 +19,7 @@
define(<W32>, <.long>)
define(<ALIGN_LOGARITHMIC>,<no>)
define(<ALIGN_FILL_0x90>,<yes>)
+define(<HAVE_COFF_TYPE>, <no>)
define(<SQR_TOOM2_THRESHOLD>,<34>)
define(<BMOD_1_TO_MOD_1_THRESHOLD>,<16>)
define(<SIZEOF_UNSIGNED>,<4>)
diff -r 2545db68d163 -r aa94454aaca3 external/lgpl3/gmp/lib/libgmp/arch/x86_64/gmp.h
--- a/external/lgpl3/gmp/lib/libgmp/arch/x86_64/gmp.h Mon Jul 12 04:41:14 2021 +0000
+++ b/external/lgpl3/gmp/lib/libgmp/arch/x86_64/gmp.h Mon Jul 12 07:04:37 2021 +0000
@@ -361,11 +361,9 @@
GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
inline semantics, unless -fgnu89-inline is used. */
#ifdef __GNUC__
-#if (defined __GNUC_STDC_INLINE__) || (__GNUC__ == 4 && __GNUC_MINOR__ == 2) \
- || (defined __GNUC_GNU_INLINE__ && defined __cplusplus)
+#if (defined __GNUC_STDC_INLINE__) || \
+ (__GNUC__ == 4 && __GNUC_MINOR__ >= 2) || (__GNUC__ > 4)
#define __GMP_EXTERN_INLINE extern __inline__ __attribute__ ((__gnu_inline__))
-#else
-#define __GMP_EXTERN_INLINE extern __inline__
#endif
#define __GMP_INLINE_PROTOTYPES 1
#endif
@@ -1693,6 +1691,9 @@
#define mpn_sec_invert_itch __MPN(sec_invert_itch)
__GMP_DECLSPEC mp_size_t mpn_sec_invert_itch (mp_size_t) __GMP_ATTRIBUTE_PURE;
+#define mpn_udiv_w_sdiv __MPN(udiv_w_sdiv)
+__GMP_DECLSPEC mp_limb_t mpn_udiv_w_sdiv (mp_limb_t *, mp_limb_t, mp_limb_t, mp_limb_t);
+
/**************** mpz inlines ****************/
@@ -2329,7 +2330,7 @@
/* Major version number is the value of __GNU_MP__ too, above. */
#define __GNU_MP_VERSION 6
#define __GNU_MP_VERSION_MINOR 2
-#define __GNU_MP_VERSION_PATCHLEVEL 0
+#define __GNU_MP_VERSION_PATCHLEVEL 1
#define __GNU_MP_RELEASE (__GNU_MP_VERSION * 10000 + __GNU_MP_VERSION_MINOR * 100 + __GNU_MP_VERSION_PATCHLEVEL)
#define __GMP_H__
Home |
Main Index |
Thread Index |
Old Index