This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB 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]

[binutils-gdb] Add -Wshadow=local


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=96643e35c077ed36c74b231ceefa4c30b3b02e28

commit 96643e35c077ed36c74b231ceefa4c30b3b02e28
Author: Tom Tromey <tom@tromey.com>
Date:   Sat Apr 21 16:09:10 2018 -0600

    Add -Wshadow=local
    
    This adds -Wshadow=local to configure.
    
    gdb/ChangeLog
    2018-10-04  Tom Tromey  <tom@tromey.com>
    
    	* configure: Rebuild.
    	* warning.m4 (AM_GDB_WARNINGS): Add -Wshadow=local.
    
    gdb/gdbserver/ChangeLog
    2018-10-04  Tom Tromey  <tom@tromey.com>
    
    	* configure: Rebuild.

Diff:
---
 gdb/ChangeLog           | 5 +++++
 gdb/configure           | 3 ++-
 gdb/gdbserver/ChangeLog | 4 ++++
 gdb/gdbserver/configure | 3 ++-
 gdb/warning.m4          | 3 ++-
 5 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3bf08bc..912bdec 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2018-10-04  Tom Tromey  <tom@tromey.com>
 
+	* configure: Rebuild.
+	* warning.m4 (AM_GDB_WARNINGS): Add -Wshadow=local.
+
+2018-10-04  Tom Tromey  <tom@tromey.com>
+
 	* guile/scm-frame.c (gdbscm_frame_read_var): Remove inner
 	declaration of "block".
 
diff --git a/gdb/configure b/gdb/configure
index 0ba8014..304adc8 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -15462,7 +15462,8 @@ build_warnings="-Wall -Wpointer-arith \
 -Wno-error=deprecated-register \
 -Wsuggest-override \
 -Wimplicit-fallthrough=3 \
--Wduplicated-cond"
+-Wduplicated-cond \
+-Wshadow=local"
 
 case "${host}" in
   *-*-mingw32*)
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index 5e35062..da4c24f 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,5 +1,9 @@
 2018-10-04  Tom Tromey  <tom@tromey.com>
 
+	* configure: Rebuild.
+
+2018-10-04  Tom Tromey  <tom@tromey.com>
+
 	* server.c (handle_status): Rename inner "thread".
 	(process_serial_event): Declare "res" in 'm' case.
 	* linux-low.c (last_thread_of_process_p, find_lwp_pid)
diff --git a/gdb/gdbserver/configure b/gdb/gdbserver/configure
index 4384665..a46b865 100755
--- a/gdb/gdbserver/configure
+++ b/gdb/gdbserver/configure
@@ -7245,7 +7245,8 @@ build_warnings="-Wall -Wpointer-arith \
 -Wno-error=deprecated-register \
 -Wsuggest-override \
 -Wimplicit-fallthrough=3 \
--Wduplicated-cond"
+-Wduplicated-cond \
+-Wshadow=local"
 
 case "${host}" in
   *-*-mingw32*)
diff --git a/gdb/warning.m4 b/gdb/warning.m4
index 82170ac..42ab1b5 100644
--- a/gdb/warning.m4
+++ b/gdb/warning.m4
@@ -45,7 +45,8 @@ build_warnings="-Wall -Wpointer-arith \
 -Wno-error=deprecated-register \
 -Wsuggest-override \
 -Wimplicit-fallthrough=3 \
--Wduplicated-cond"
+-Wduplicated-cond \
+-Wshadow=local"
 
 case "${host}" in
   *-*-mingw32*)


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