From: Richard Biener Date: Wed, 15 Mar 2023 13:48:57 +0000 (+0100) Subject: Avoid duplicate diagnostic in g++.dg/warn/Wuse-after-free3.C X-Git-Tag: basepoints/gcc-14~512 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dc35778a4be9dc4b936b8f0943ce04fb5f5ce810;p=thirdparty%2Fgcc.git Avoid duplicate diagnostic in g++.dg/warn/Wuse-after-free3.C We are diagnosing operator delete (this_3(D)); A::f (this_3(D)); *this_3(D) ={v} CLOBBER; where the CLOBBER appears at the end of the DTOR for C++11 and later. The following avoids this by simply never diagnosing clobbers as use-after-free. * gimple-ssa-warn-access.cc (pass_waccess::check_pointer_uses): Do not diagnose clobbers. * g++.dg/warn/Wuse-after-free3.C: Remove expected duplicate diagnostic. --- diff --git a/gcc/gimple-ssa-warn-access.cc b/gcc/gimple-ssa-warn-access.cc index 8b1c1cc019e3..019c11004105 100644 --- a/gcc/gimple-ssa-warn-access.cc +++ b/gcc/gimple-ssa-warn-access.cc @@ -4194,6 +4194,10 @@ pass_waccess::check_pointer_uses (gimple *stmt, tree ptr, if (use_stmt == stmt || is_gimple_debug (use_stmt)) continue; + /* A clobber isn't a use. */ + if (gimple_clobber_p (use_stmt)) + continue; + if (realloc_lhs) { /* Check to see if USE_STMT is a mismatched deallocation diff --git a/gcc/testsuite/g++.dg/warn/Wuse-after-free3.C b/gcc/testsuite/g++.dg/warn/Wuse-after-free3.C index 1862ac8b09d9..e5b157865bf6 100644 --- a/gcc/testsuite/g++.dg/warn/Wuse-after-free3.C +++ b/gcc/testsuite/g++.dg/warn/Wuse-after-free3.C @@ -1,7 +1,6 @@ // PR target/104213 // { dg-do compile } // { dg-options "-Wuse-after-free" } -// FIXME: We should not output the warning twice. struct A { @@ -13,4 +12,4 @@ A::~A () { operator delete (this); f (); // { dg-warning "used after" } -} // { dg-warning "used after" } +}