From: Martin Sebor Date: Sat, 25 Jul 2020 20:21:47 +0000 (-0600) Subject: Fix PR c++/96310 - Ignoring -Wnonnull via pragma gcc diagnostics still produces an... X-Git-Tag: upstream/12.2.0~14632 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0633768a1a2efe689e5505b3a95aa949d704b06;p=platform%2Fupstream%2Fgcc.git Fix PR c++/96310 - Ignoring -Wnonnull via pragma gcc diagnostics still produces an unwanted note. gcc/c-family/ChangeLog: PR c++/96310 * c-common.c (check_nonnull_arg): Print note only when warning was issued. --- diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index 51ecde6..e2569c6 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -5538,7 +5538,7 @@ check_nonnull_arg (void *ctx, tree param, unsigned HOST_WIDE_INT param_num) { warned = warning_at (loc, OPT_Wnonnull, "%qs pointer null", "this"); - if (pctx->fndecl) + if (warned && pctx->fndecl) inform (DECL_SOURCE_LOCATION (pctx->fndecl), "in a call to non-static member function %qD", pctx->fndecl); @@ -5548,7 +5548,7 @@ check_nonnull_arg (void *ctx, tree param, unsigned HOST_WIDE_INT param_num) warned = warning_at (loc, OPT_Wnonnull, "argument %u null where non-null expected", (unsigned) param_num); - if (pctx->fndecl) + if (warned && pctx->fndecl) inform (DECL_SOURCE_LOCATION (pctx->fndecl), "in a call to function %qD declared %qs", pctx->fndecl, "nonnull"); diff --git a/gcc/testsuite/g++.dg/warn/Wnonnull8.C b/gcc/testsuite/g++.dg/warn/Wnonnull8.C new file mode 100644 index 0000000..7820b2e --- /dev/null +++ b/gcc/testsuite/g++.dg/warn/Wnonnull8.C @@ -0,0 +1,20 @@ +/* PR c++/96310 - Ignoring -Wnonnull via pragma gcc diagnostics still produces + an unwanted note + { dg-do compile } + { dg-options "-Wall" } */ + +struct C { + void f (); // { dg-message "in a call" } + void g (); // { dg-bogus "in a call" } +}; + +void f () +{ + static_cast(0)->f (); // { dg-warning "\\\[-Wnonnull" } +} + +void g () +{ +#pragma GCC diagnostic ignored "-Wnonnull" + static_cast(0)->g (); +}