[Gmp-commit] /var/hg/gmp: 2 new changesets
mercurial at gmplib.org
mercurial at gmplib.org
Mon Oct 10 17:06:40 CEST 2011
details: /var/hg/gmp/rev/966737bd91ed
changeset: 14297:966737bd91ed
user: Torbjorn Granlund <tege at gmplib.org>
date: Mon Oct 10 17:06:27 2011 +0200
description:
(check_ref): Fix loop end bound.
details: /var/hg/gmp/rev/74dd752b960d
changeset: 14298:74dd752b960d
user: Torbjorn Granlund <tege at gmplib.org>
date: Mon Oct 10 17:06:37 2011 +0200
description:
*** empty log message ***
diffstat:
ChangeLog | 5 +++++
tests/mpz/t-scan.c | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diffs (24 lines):
diff -r 27913f466a23 -r 74dd752b960d ChangeLog
--- a/ChangeLog Mon Oct 10 12:06:39 2011 +0200
+++ b/ChangeLog Mon Oct 10 17:06:37 2011 +0200
@@ -1,3 +1,8 @@
+2011-10-10 Torbjorn Granlund <tege at gmplib.org>
+
+ From Marco Trudel:
+ * tests/mpz/t-scan.c (check_ref): Fix loop end bound.
+
2011-10-10 Niels Möller <nisse at lysator.liu.se>
* mpn/generic/hgcd_appr.c (mpn_hgcd_appr): Interface change.
diff -r 27913f466a23 -r 74dd752b960d tests/mpz/t-scan.c
--- a/tests/mpz/t-scan.c Mon Oct 10 12:06:39 2011 +0200
+++ b/tests/mpz/t-scan.c Mon Oct 10 17:06:37 2011 +0200
@@ -79,7 +79,7 @@
for (isize = 0; isize <= size; isize++)
{
- for (oindex = 0; oindex <= numberof (offset); oindex++)
+ for (oindex = 0; oindex < numberof (offset); oindex++)
{
o = offset[oindex];
if ((int) isize*GMP_NUMB_BITS < -o)
More information about the gmp-commit
mailing list