From 8ddd8e0ed83ce09671695540788645e54b2b09a5 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Tue, 11 Feb 2020 10:51:49 -0500 Subject: [PATCH] Add -Wstrict-null-sentinel to gdbsupport/warning.m4 Commit 85f0dd3ce ("[gdb] Fix -Wstrict-null-sentinel warnings") fixed some violations of -Wstrict-null-sentinel. If we want to enforce this warning, I think we should enable it in our warning.m4 file. gdbsupport/ChangeLog: * warning.m4: Add -Wstrict-null-sentinel. * configure: Re-generate. gdbserver/ChangeLog: * configure: Re-generate. gdb/ChangeLog: * configure: Re-generate. --- gdb/ChangeLog | 4 ++++ gdb/configure | 3 ++- gdbserver/ChangeLog | 4 ++++ gdbserver/configure | 3 ++- gdbsupport/ChangeLog | 5 +++++ gdbsupport/configure | 3 ++- gdbsupport/warning.m4 | 4 +++- 7 files changed, 22 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fcb7980c36..d856a523b8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-02-11 Simon Marchi + + * configure: Re-generate. + 2020-02-11 Simon Marchi * acinclude: Update warning.m4 path. diff --git a/gdb/configure b/gdb/configure index a1d1506497..2ce910c808 100755 --- a/gdb/configure +++ b/gdb/configure @@ -16111,7 +16111,8 @@ build_warnings="-Wall -Wpointer-arith \ -Wdeprecated-copy \ -Wdeprecated-copy-dtor \ -Wredundant-move \ --Wmissing-declarations" +-Wmissing-declarations \ +-Wstrict-null-sentinel" case "${host}" in *-*-mingw32*) diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog index 05620affa9..da6ccc4df6 100644 --- a/gdbserver/ChangeLog +++ b/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2020-02-11 Simon Marchi + + * configure: Re-generate. + 2020-02-11 Simon Marchi * acinclude.m4: Update warning.m4 path. diff --git a/gdbserver/configure b/gdbserver/configure index 4b9d7e3718..bd0e667af6 100755 --- a/gdbserver/configure +++ b/gdbserver/configure @@ -9815,7 +9815,8 @@ build_warnings="-Wall -Wpointer-arith \ -Wdeprecated-copy \ -Wdeprecated-copy-dtor \ -Wredundant-move \ --Wmissing-declarations" +-Wmissing-declarations \ +-Wstrict-null-sentinel" case "${host}" in *-*-mingw32*) diff --git a/gdbsupport/ChangeLog b/gdbsupport/ChangeLog index f03bb34bac..676cb66aa0 100644 --- a/gdbsupport/ChangeLog +++ b/gdbsupport/ChangeLog @@ -1,3 +1,8 @@ +2020-02-11 Simon Marchi + + * warning.m4: Add -Wstrict-null-sentinel. + * configure: Re-generate. + 2020-02-11 Simon Marchi * warning.m4: Move here, from gdb/warning.m4. diff --git a/gdbsupport/configure b/gdbsupport/configure index 197749b5d0..1f7d72cc58 100755 --- a/gdbsupport/configure +++ b/gdbsupport/configure @@ -10853,7 +10853,8 @@ build_warnings="-Wall -Wpointer-arith \ -Wdeprecated-copy \ -Wdeprecated-copy-dtor \ -Wredundant-move \ --Wmissing-declarations" +-Wmissing-declarations \ +-Wstrict-null-sentinel" case "${host}" in *-*-mingw32*) diff --git a/gdbsupport/warning.m4 b/gdbsupport/warning.m4 index e2b8a43ddb..81939ed761 100644 --- a/gdbsupport/warning.m4 +++ b/gdbsupport/warning.m4 @@ -50,7 +50,9 @@ build_warnings="-Wall -Wpointer-arith \ -Wdeprecated-copy \ -Wdeprecated-copy-dtor \ -Wredundant-move \ --Wmissing-declarations" +-Wmissing-declarations \ +-Wstrict-null-sentinel \ +" case "${host}" in *-*-mingw32*) -- 2.34.1