This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.22-629-gd46256f


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  d46256f440fef7e3ee49d2e2660c2eeb707437e9 (commit)
      from  3cf74f8a4a0e0c7b7a9b4d40ba220832f33ea638 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=d46256f440fef7e3ee49d2e2660c2eeb707437e9

commit d46256f440fef7e3ee49d2e2660c2eeb707437e9
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Mon Dec 28 22:18:22 2015 -0500

    ia64: fpu: fix gammaf typo [BZ #15421]
    
    The lgamma rewrite in commit d709042a6e5ab3c360280faad6f9538a34dc8eea
    used "gammaf" in this function when it should have used "gamma".

diff --git a/ChangeLog b/ChangeLog
index f3f26d7..00a869c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-12-28  Mike Frysinger  <vapier@gentoo.org>
+
+	[BZ #15421]
+	* sysdeps/ia64/fpu/w_lgamma_main.c: Change gammaf to gamma.
+
 2015-12-23  Torvald Riegel  <triegel@redhat.com>
 
 	[BZ #13690]
diff --git a/sysdeps/ia64/fpu/w_lgamma_main.c b/sysdeps/ia64/fpu/w_lgamma_main.c
index 6deffad..0d93bde 100644
--- a/sysdeps/ia64/fpu/w_lgamma_main.c
+++ b/sysdeps/ia64/fpu/w_lgamma_main.c
@@ -63,11 +63,11 @@ double LGFUNC (lgamma) (double x)
     return CALL_LGAMMA (double, __libm_lgamma, x);
 }
 #if USE_AS_COMPAT
-compat_symbol (libm, __lgammaf_compat, lgammaf, LGAMMA_OLD_VER);
+compat_symbol (libm, __lgamma_compat, lgamma, LGAMMA_OLD_VER);
 #else
-versioned_symbol (libm, __ieee754_lgammaf, lgammaf, LGAMMA_NEW_VER);
+versioned_symbol (libm, __ieee754_lgamma, lgamma, LGAMMA_NEW_VER);
 #endif
 #if GAMMA_ALIAS
-strong_alias (LGFUNC (lgammaf), __ieee754_gammaf)
-weak_alias (__ieee754_gammaf, gammaf)
+strong_alias (LGFUNC (lgamma), __ieee754_gamma)
+weak_alias (__ieee754_gamma, gamma)
 #endif

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                        |    5 +++++
 sysdeps/ia64/fpu/w_lgamma_main.c |    8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]