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

mercurial at gmplib.org mercurial at gmplib.org
Wed May 22 15:31:54 CEST 2013


details:   /var/hg/gmp/rev/4f1f74062be2
changeset: 15816:4f1f74062be2
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Wed May 22 15:10:00 2013 +0200
description:
Add a copyright year.

details:   /var/hg/gmp/rev/ced65d4922a7
changeset: 15817:ced65d4922a7
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Wed May 22 15:12:17 2013 +0200
description:
(LIBGMP_LT_*, LIBGMPXX_LT_*): Bump version info (align with 5.1.2).

details:   /var/hg/gmp/rev/6b8dadb39aec
changeset: 15818:6b8dadb39aec
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Wed May 22 15:22:44 2013 +0200
description:
(Reporting Bugs): Ask for configure's output.

details:   /var/hg/gmp/rev/b29480bdb212
changeset: 15819:b29480bdb212
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Wed May 22 15:31:47 2013 +0200
description:
ChangeLog

diffstat:

 ChangeLog           |  14 +++++++++++++-
 Makefile.am         |   5 +++--
 doc/gmp.texi        |   9 ++++++---
 tests/mpq/t-get_d.c |   4 ++--
 4 files changed, 24 insertions(+), 8 deletions(-)

diffs (87 lines):

diff -r 4ddfd3afa90e -r b29480bdb212 ChangeLog
--- a/ChangeLog	Wed May 22 12:02:42 2013 +0200
+++ b/ChangeLog	Wed May 22 15:31:47 2013 +0200
@@ -1,6 +1,18 @@
+2013-05-22  Torbjorn Granlund  <tege at gmplib.org>
+
+	* doc/gmp.texi (Reporting Bugs): Ask for configure's output.
+
+	* mpn/ia64/divrem_2.asm: Don't clobber f16-f18.
+
+2013-05-20  Torbjorn Granlund  <tege at gmplib.org>
+
+	* mpn/arm/udiv.asm: Change spacing to work around binutils bug.
+
 2013-05-16  Torbjorn Granlund  <tege at gmplib.org>
 
-	* tests/misc.c (tests_hardware_getround, tests_hardware_setround): 
+	* Makefile.am (LIBGMP_LT_*, LIBGMPXX_LT_*): Bump version info.
+
+	* tests/misc.c (tests_hardware_getround, tests_hardware_setround):
 	Avoid assembly dependency unless WANT_ASSEMBLY.
 
 	* configure.ac (WANT_ASSEMBLY): Conditionally define.
diff -r 4ddfd3afa90e -r b29480bdb212 Makefile.am
--- a/Makefile.am	Wed May 22 12:02:42 2013 +0200
+++ b/Makefile.am	Wed May 22 15:31:47 2013 +0200
@@ -73,6 +73,7 @@
 #        5.0.5   10:5:0    6:5:2   4:25:1
 #        5.1.0   11:0:1    7:0:3     -
 #        5.1.1   11:1:1    7:1:3     -
+#        5.1.2   11:2:1    7:2:3     -
 #
 # Starting at 3:0:0 is a slight abuse of the versioning system, but it
 # ensures we're past soname libgmp.so.2, which was used on Debian GNU/Linux
@@ -86,11 +87,11 @@
 # libgmpxx.so.3.0.4) incrementing, to make it clear which GMP it's from.
 
 LIBGMP_LT_CURRENT    = 11
-LIBGMP_LT_REVISION   = 1
+LIBGMP_LT_REVISION   = 2
 LIBGMP_LT_AGE        = 1
 
 LIBGMPXX_LT_CURRENT  = 7
-LIBGMPXX_LT_REVISION = 1
+LIBGMPXX_LT_REVISION = 2
 LIBGMPXX_LT_AGE      = 3
 
 
diff -r 4ddfd3afa90e -r b29480bdb212 doc/gmp.texi
--- a/doc/gmp.texi	Wed May 22 12:02:42 2013 +0200
+++ b/doc/gmp.texi	Wed May 22 15:31:47 2013 +0200
@@ -2659,8 +2659,8 @@
 GMP's assembly code sometimes promotes a read of the limbs to some larger size,
 for efficiency.  GMP will do this even at the start and end of a multilimb
 operand, using naturally aligned operations on the larger type.  This may lead
-to benign reads outside of allocated areas, triggering complaints from Valgrind.
-Valgrind's option @samp{--partial-loads-ok=yes} should help.
+to benign reads outside of allocated areas, triggering complaints from
+Valgrind.  Valgrind's option @samp{--partial-loads-ok=yes} should help.
 
 @item Other Problems
 Any suspected bug in GMP itself should be isolated to make sure it's not an
@@ -2883,7 +2883,10 @@
 Please do not send core dumps, executables or @command{strace}s.
 
 @item
-The configuration options you used when building GMP, if any.
+The @samp{configure} options you used when building GMP, if any.
+
+ at item
+The output from @samp{configure}, as printed to stdout, with any options used.
 
 @item
 The name of the compiler and its version.  For @command{gcc}, get the version
diff -r 4ddfd3afa90e -r b29480bdb212 tests/mpq/t-get_d.c
--- a/tests/mpq/t-get_d.c	Wed May 22 12:02:42 2013 +0200
+++ b/tests/mpq/t-get_d.c	Wed May 22 15:31:47 2013 +0200
@@ -1,7 +1,7 @@
 /* Test mpq_get_d and mpq_set_d
 
-Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2002, 2003, 2012 Free Software
-Foundation, Inc.
+Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2002, 2003, 2012, 2013 Free
+Software Foundation, Inc.
 
 This file is part of the GNU MP Library test suite.
 


More information about the gmp-commit mailing list