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

mercurial at gmplib.org mercurial at gmplib.org
Sun Jan 5 16:36:31 UTC 2014


details:   /var/hg/gmp/rev/52808b76b1b9
changeset: 16175:52808b76b1b9
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Sun Jan 05 17:07:49 2014 +0100
description:
(mpn_sec_minvert): Remove formal parameters.

details:   /var/hg/gmp/rev/50b2bfea5ced
changeset: 16176:50b2bfea5ced
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Sun Jan 05 17:31:05 2014 +0100
description:
(alpha): Set extra_functions conditionally.

details:   /var/hg/gmp/rev/5cf046316a74
changeset: 16177:5cf046316a74
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Sun Jan 05 17:33:21 2014 +0100
description:
Add a copyright year.

details:   /var/hg/gmp/rev/27721da663f6
changeset: 16178:27721da663f6
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Sun Jan 05 17:33:52 2014 +0100
description:
Add a copyright year.

details:   /var/hg/gmp/rev/50087923f8df
changeset: 16179:50087923f8df
user:      Torbjorn Granlund <tege at gmplib.org>
date:      Sun Jan 05 17:36:28 2014 +0100
description:
ChangeLog

diffstat:

 ChangeLog           |  4 ++++
 acinclude.m4        |  2 +-
 configure.ac        |  6 ++++--
 doc/gmp.texi        |  2 +-
 gmp-h.in            |  3 +--
 gmp-impl.h          |  2 +-
 mpn/generic/pow_1.c |  2 +-
 7 files changed, 13 insertions(+), 8 deletions(-)

diffs (97 lines):

diff -r 8d8f8cef5236 -r 50087923f8df ChangeLog
--- a/ChangeLog	Sun Jan 05 15:47:48 2014 +0100
+++ b/ChangeLog	Sun Jan 05 17:36:28 2014 +0100
@@ -1,5 +1,9 @@
 2014-01-05  Torbjorn Granlund  <tege at gmplib.org>
 
+	* configure.ac (alpha): Set extra_functions conditionally.
+
+	* gmp-h.in (mpn_sec_minvert): Remove formal parameters.
+
 	* doc/gmp.texi: Improve doc for several functions.
 
 	* mpn/generic/sec_tabselect.c: Declare input arg using 'const'.
diff -r 8d8f8cef5236 -r 50087923f8df acinclude.m4
--- a/acinclude.m4	Sun Jan 05 15:47:48 2014 +0100
+++ b/acinclude.m4	Sun Jan 05 17:36:28 2014 +0100
@@ -1,7 +1,7 @@
 dnl  GMP specific autoconf macros
 
 
-dnl  Copyright 2000-2006, 2009, 2011, 2013 Free Software Foundation, Inc.
+dnl  Copyright 2000-2006, 2009, 2011, 2013, 2014 Free Software Foundation, Inc.
 dnl
 dnl  This file is part of the GNU MP Library.
 dnl
diff -r 8d8f8cef5236 -r 50087923f8df configure.ac
--- a/configure.ac	Sun Jan 05 15:47:48 2014 +0100
+++ b/configure.ac	Sun Jan 05 17:36:28 2014 +0100
@@ -3,7 +3,7 @@
 
 define(GMP_COPYRIGHT,[[
 
-Copyright 1996-2013 Free Software Foundation, Inc.
+Copyright 1996-2014 Free Software Foundation, Inc.
 
 This file is part of the GNU MP Library.
 
@@ -464,7 +464,9 @@
       *)
         path="alpha" ;;
     esac
-    extra_functions="cntlz"
+    if test "$enable_assembly" = "yes" ; then
+       extra_functions="cntlz"
+    fi
     gcc_cflags_optlist="asm cpu oldas" # need asm ahead of cpu, see below
     gcc_cflags_maybe="-mieee"
     gcc_cflags_oldas="-Wa,-oldas"     # see GMP_GCC_WA_OLDAS.
diff -r 8d8f8cef5236 -r 50087923f8df doc/gmp.texi
--- a/doc/gmp.texi	Sun Jan 05 15:47:48 2014 +0100
+++ b/doc/gmp.texi	Sun Jan 05 17:36:28 2014 +0100
@@ -14,7 +14,7 @@
 This manual describes how to install and use the GNU multiple precision
 arithmetic library, version @value{VERSION}.
 
-Copyright 1991, 1993-2013 Free Software Foundation, Inc.
+Copyright 1991, 1993-2014 Free Software Foundation, Inc.
 
 Permission is granted to copy, distribute and/or modify this document under
 the terms of the GNU Free Documentation License, Version 1.3 or any later
diff -r 8d8f8cef5236 -r 50087923f8df gmp-h.in
--- a/gmp-h.in	Sun Jan 05 15:47:48 2014 +0100
+++ b/gmp-h.in	Sun Jan 05 17:36:28 2014 +0100
@@ -1657,8 +1657,7 @@
 __GMP_DECLSPEC mp_size_t mpn_sec_div_r_itch (mp_size_t, mp_size_t) __GMP_ATTRIBUTE_PURE;
 
 #define mpn_sec_minvert __MPN(sec_minvert)
-__GMP_DECLSPEC int mpn_sec_minvert (mp_ptr, mp_ptr ap, mp_srcptr mp,
-				    mp_size_t, mp_bitcnt_t, mp_ptr);
+__GMP_DECLSPEC int mpn_sec_minvert (mp_ptr, mp_ptr, mp_srcptr, mp_size_t, mp_bitcnt_t, mp_ptr);
 #define mpn_sec_minvert_itch __MPN(sec_minvert_itch)
 __GMP_DECLSPEC mp_size_t mpn_sec_minvert_itch (mp_size_t) __GMP_ATTRIBUTE_PURE;
 
diff -r 8d8f8cef5236 -r 50087923f8df gmp-impl.h
--- a/gmp-impl.h	Sun Jan 05 15:47:48 2014 +0100
+++ b/gmp-impl.h	Sun Jan 05 17:36:28 2014 +0100
@@ -3,7 +3,7 @@
    THE CONTENTS OF THIS FILE ARE FOR INTERNAL USE AND ARE ALMOST CERTAIN TO
    BE SUBJECT TO INCOMPATIBLE CHANGES IN FUTURE GNU MP RELEASES.
 
-Copyright 1991, 1993-1997, 1999-2013 Free Software Foundation, Inc.
+Copyright 1991, 1993-1997, 1999-2014 Free Software Foundation, Inc.
 
 This file is part of the GNU MP Library.
 
diff -r 8d8f8cef5236 -r 50087923f8df mpn/generic/pow_1.c
--- a/mpn/generic/pow_1.c	Sun Jan 05 15:47:48 2014 +0100
+++ b/mpn/generic/pow_1.c	Sun Jan 05 17:36:28 2014 +0100
@@ -4,7 +4,7 @@
    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
    FUTURE GNU MP RELEASES.
 
-Copyright 2002 Free Software Foundation, Inc.
+Copyright 2002, 2014 Free Software Foundation, Inc.
 
 This file is part of the GNU MP Library.
 


More information about the gmp-commit mailing list