diff options
author | Tom Tromey <tom@tromey.com> | 2018-04-21 16:09:10 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-10-04 22:51:49 -0600 |
commit | 96643e35c077ed36c74b231ceefa4c30b3b02e28 (patch) | |
tree | 63d526b311db98b8ee43409cd4e1d0ac9395063e /gdb/gdbserver | |
parent | d951f98b3c8bf202571327d8679ae30ca1da9fdc (diff) | |
download | gdb-96643e35c077ed36c74b231ceefa4c30b3b02e28.zip gdb-96643e35c077ed36c74b231ceefa4c30b3b02e28.tar.gz gdb-96643e35c077ed36c74b231ceefa4c30b3b02e28.tar.bz2 |
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.
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 | ||||
-rwxr-xr-x | gdb/gdbserver/configure | 3 |
2 files changed, 6 insertions, 1 deletions
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*) |