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.14-402-g1a97a8c


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  1a97a8c78f9b99d835581f14fc6beb57cb93e97a (commit)
      from  ed72b6545f6d20f2d29ed71d65394d4a75ad358e (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=1a97a8c78f9b99d835581f14fc6beb57cb93e97a

commit 1a97a8c78f9b99d835581f14fc6beb57cb93e97a
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Fri Oct 21 07:39:28 2011 -0400

    Don't use NULL in last s_fma{,f} change

diff --git a/sysdeps/x86_64/fpu/multiarch/s_fma.c b/sysdeps/x86_64/fpu/multiarch/s_fma.c
index 06f2d00..dca256a 100644
--- a/sysdeps/x86_64/fpu/multiarch/s_fma.c
+++ b/sysdeps/x86_64/fpu/multiarch/s_fma.c
@@ -45,7 +45,7 @@ __fma_fma4 (double x, double y, double z)
 # else
 #  undef HAS_FMA4
 #  define HAS_FMA4 0
-#  define __fma_fma4 NULL
+#  define __fma_fma4 ((void *) 0)
 # endif
 
 
diff --git a/sysdeps/x86_64/fpu/multiarch/s_fmaf.c b/sysdeps/x86_64/fpu/multiarch/s_fmaf.c
index 53c08de..0dcf273 100644
--- a/sysdeps/x86_64/fpu/multiarch/s_fmaf.c
+++ b/sysdeps/x86_64/fpu/multiarch/s_fmaf.c
@@ -44,7 +44,7 @@ __fmaf_fma4 (float x, float y, float z)
 # else
 #  undef HAS_FMA4
 #  define HAS_FMA4 0
-#  define __fmaf_fma4 NULL
+#  define __fmaf_fma4 ((void *) 0)
 # endif
 
 

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

Summary of changes:
 sysdeps/x86_64/fpu/multiarch/s_fma.c  |    2 +-
 sysdeps/x86_64/fpu/multiarch/s_fmaf.c |    2 +-
 2 files changed, 2 insertions(+), 2 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]