[Gmp-commit] /var/hg/gmp: 3 new changesets

mercurial at gmplib.org mercurial at gmplib.org
Tue Dec 6 11:47:13 CET 2011


details:   /var/hg/gmp/rev/d84ce9e3bb00
changeset: 14527:d84ce9e3bb00
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Tue Dec 06 11:45:03 2011 +0100
description:
Fix typo.

details:   /var/hg/gmp/rev/93e94df75353
changeset: 14528:93e94df75353
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Tue Dec 06 11:46:58 2011 +0100
description:
Redefine the mpn_ functions, not __gmpn_ (for the benefit of fat  builds).

details:   /var/hg/gmp/rev/e80a51dd5354
changeset: 14529:e80a51dd5354
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Tue Dec 06 11:47:08 2011 +0100
description:
*** empty log message ***

diffstat:

 ChangeLog        |  6 ++++++
 doc/gmp.texi     |  2 +-
 tune/mod_1_1-1.c |  6 ++++--
 tune/mod_1_1-2.c |  6 ++++--
 4 files changed, 15 insertions(+), 5 deletions(-)

diffs (55 lines):

diff -r 9c3b5c259370 -r e80a51dd5354 ChangeLog
--- a/ChangeLog	Mon Dec 05 21:53:11 2011 +0100
+++ b/ChangeLog	Tue Dec 06 11:47:08 2011 +0100
@@ -1,3 +1,9 @@
+2011-12-06  Torbjorn Granlund  <tege at gmplib.org>
+
+	* tune/mod_1_1-1.c: Redefine the mpn_ functions, not __gmpn_ (for the
+	benefit of fat builds).
+	* tune/mod_1_1-2.c: Likewise.
+
 2011-12-05  Torbjorn Granlund  <tege at gmplib.org>
 
 	* mpn/x86/fat/lshiftc.c: New file.
diff -r 9c3b5c259370 -r e80a51dd5354 doc/gmp.texi
--- a/doc/gmp.texi	Mon Dec 05 21:53:11 2011 +0100
+++ b/doc/gmp.texi	Tue Dec 06 11:47:08 2011 +0100
@@ -1925,7 +1925,7 @@
 @tindex @code{mp_bitcnt_t}
 Counts of bits of a multi-precision number are represented in the C type
 @code{mp_bitcnt_t}.  Currently this is always an @code{unsigned long}, but on
-some systems it will be an @code{unsigned long long} in the future .
+some systems it will be an @code{unsigned long long} in the future.
 
 @cindex Random state
 @tindex @code{gmp_randstate_t}
diff -r 9c3b5c259370 -r e80a51dd5354 tune/mod_1_1-1.c
--- a/tune/mod_1_1-1.c	Mon Dec 05 21:53:11 2011 +0100
+++ b/tune/mod_1_1-1.c	Tue Dec 06 11:47:08 2011 +0100
@@ -22,7 +22,9 @@
 
 #undef MOD_1_1P_METHOD
 #define MOD_1_1P_METHOD 1
-#define __gmpn_mod_1_1p mpn_mod_1_1p_1
-#define __gmpn_mod_1_1p_cps mpn_mod_1_1p_cps_1
+#undef mpn_mod_1_1p
+#undef mpn_mod_1_1p_cps
+#define mpn_mod_1_1p mpn_mod_1_1p_1
+#define mpn_mod_1_1p_cps mpn_mod_1_1p_cps_1
 
 #include "mpn/generic/mod_1_1.c"
diff -r 9c3b5c259370 -r e80a51dd5354 tune/mod_1_1-2.c
--- a/tune/mod_1_1-2.c	Mon Dec 05 21:53:11 2011 +0100
+++ b/tune/mod_1_1-2.c	Tue Dec 06 11:47:08 2011 +0100
@@ -22,7 +22,9 @@
 
 #undef MOD_1_1P_METHOD
 #define MOD_1_1P_METHOD 2
-#define __gmpn_mod_1_1p mpn_mod_1_1p_2
-#define __gmpn_mod_1_1p_cps mpn_mod_1_1p_cps_2
+#undef mpn_mod_1_1p
+#undef mpn_mod_1_1p_cps
+#define mpn_mod_1_1p mpn_mod_1_1p_2
+#define mpn_mod_1_1p_cps mpn_mod_1_1p_cps_2
 
 #include "mpn/generic/mod_1_1.c"


More information about the gmp-commit mailing list