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-110-g772e741


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  772e741ba5afede4892078102a620e30aeac0c87 (commit)
      from  9173e3c0b4455a9cc675318554591247543fb640 (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=772e741ba5afede4892078102a620e30aeac0c87

commit 772e741ba5afede4892078102a620e30aeac0c87
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Thu Aug 20 18:00:09 2015 +0000

    Don't use -Wno-uninitialized in math/.
    
    The uninitialized variable warnings in math/ having been fixed for all
    the supported floating-point formats, this patch removes the use of
    -Wno-uninitialized there, continuing with the goal of avoiding -Wno-
    options in makefiles as far as possible..
    
    Tested for x86_64 and x86 (full build and testsuite runs), and for
    powerpc and mips64 (verified that glibc builds without errors).
    
    	* math/Makefile (CFLAGS): Don't add -Wno-uninitialized.

diff --git a/ChangeLog b/ChangeLog
index 93d5563..73f16c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2015-08-20  Joseph Myers  <joseph@codesourcery.com>
 
+	* math/Makefile (CFLAGS): Don't add -Wno-uninitialized.
+
 	* sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Always initialize
 	variables for high and low parts before possibly modifying them.
 
diff --git a/math/Makefile b/math/Makefile
index d3b483d..c98c3c4 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -249,9 +249,6 @@ ifneq ($(long-double-fcts),yes)
 math-CPPFLAGS += -DNO_LONG_DOUBLE -D_Mlong_double_=double
 endif
 
-# The fdlibm code generates a lot of these warnings but is otherwise clean.
-override CFLAGS += -Wno-uninitialized
-
 # The -lieee library is actually an object file.
 # The module just defines the _LIB_VERSION_ variable.
 # It's not a library to make sure it is linked in instead of s_lib_version.o.

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

Summary of changes:
 ChangeLog     |    2 ++
 math/Makefile |    3 ---
 2 files changed, 2 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]