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.16-ports-merge-854-g7514f09


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  7514f09e1e7e88c6d7f1fdabcd14469bccbf3167 (commit)
      from  3cb3bb9b40e7302b0f89b1606b91ddc35e161688 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=7514f09e1e7e88c6d7f1fdabcd14469bccbf3167

commit 7514f09e1e7e88c6d7f1fdabcd14469bccbf3167
Author: Richard Henderson <rth@twiddle.net>
Date:   Fri Dec 7 13:08:31 2012 -0600

    alpha: Fix redefinition of __isnanl macro warning
    
    In bdd7898a58bd76ac3b411a4931ff3f9e77eabe6a we added self-definitions
    of __isnan and friends in order to indicate specialized architecture
    support, and avoid redefinitions within various generic math_private.h.
    
    There is no generic math_private.h that concerns ldbl-128, and while
    we provide __isnanl in the alpha math_private.h there's no need to
    protect the function against redefinition.

diff --git a/ports/sysdeps/alpha/fpu/math_private.h b/ports/sysdeps/alpha/fpu/math_private.h
index 4f270f7..22ab3b9 100644
--- a/ports/sysdeps/alpha/fpu/math_private.h
+++ b/ports/sysdeps/alpha/fpu/math_private.h
@@ -12,9 +12,6 @@
 #ifndef __isnanf
 # define __isnanf __isnanf
 #endif
-#ifndef __isnanl
-# define __isnanl __isnanl
-#endif
 
 #include_next <math_private.h>
 

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

Summary of changes:
 ports/sysdeps/alpha/fpu/math_private.h |    3 ---
 1 files changed, 0 insertions(+), 3 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]