changeset 17413:ef8f3a19c94b

manywarnings: update for GCC 4.8.0 * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add -Waggressive-loop-optimizations, -Wreturn-local-addr, which are new to GCC 4.8. Remove -Wformat=2, -Wmissing-format-attribute, -Wmissing-noreturn, as they are duplicates of other warnings. Remove -Wunreachable-code, as it is removed in GCC 4.8 and was documented to be flaky in earlier versions of GCC.
author Paul Eggert <eggert@cs.ucla.edu>
date Wed, 15 May 2013 23:21:29 -0700
parents 6054142aae93
children ce6c9341404e
files ChangeLog m4/manywarnings.m4
diffstat 2 files changed, 10 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2013-05-15  Paul Eggert  <eggert@cs.ucla.edu>
 
+	manywarnings: update for GCC 4.8.0
+	* m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC):
+	Add -Waggressive-loop-optimizations, -Wreturn-local-addr, which
+	are new to GCC 4.8.  Remove -Wformat=2, -Wmissing-format-attribute,
+	-Wmissing-noreturn, as they are duplicates of other warnings.
+	Remove -Wunreachable-code, as it is removed in GCC 4.8 and
+	was documented to be flaky in earlier versions of GCC.
+
 	spawn-tests, sys_socket-tests, sys_wait-tests: port to clang
 	* tests/test-spawn.c (main):
 	* tests/test-sys_socket.c (main):
--- a/m4/manywarnings.m4
+++ b/m4/manywarnings.m4
@@ -98,6 +98,7 @@
     -W \
     -Wabi \
     -Waddress \
+    -Waggressive-loop-optimizations \
     -Wall \
     -Warray-bounds \
     -Wattributes \
@@ -125,7 +126,6 @@
     -Wformat-security \
     -Wformat-y2k \
     -Wformat-zero-length \
-    -Wformat=2 \
     -Wfree-nonheap-object \
     -Wignored-qualifiers \
     -Wimplicit \
@@ -143,9 +143,7 @@
     -Wmissing-braces \
     -Wmissing-declarations \
     -Wmissing-field-initializers \
-    -Wmissing-format-attribute \
     -Wmissing-include-dirs \
-    -Wmissing-noreturn \
     -Wmissing-parameter-type \
     -Wmissing-prototypes \
     -Wmudflap \
@@ -166,6 +164,7 @@
     -Wpointer-sign \
     -Wpointer-to-int-cast \
     -Wpragmas \
+    -Wreturn-local-addr \
     -Wreturn-type \
     -Wsequence-point \
     -Wshadow \
@@ -187,7 +186,6 @@
     -Wtype-limits \
     -Wuninitialized \
     -Wunknown-pragmas \
-    -Wunreachable-code \
     -Wunsafe-loop-optimizations \
     -Wunused \
     -Wunused-but-set-parameter \