From: Torbjörn SVENSSON Date: Mon, 13 Jul 2026 19:43:50 +0000 (+0200) Subject: Fix compilation issue introduced in r17-2365-gc5627f93a82591 [PR124058] X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfc5aa4ed975c4aa2858af1579dbb842ee78f9df;p=thirdparty%2Fgcc.git Fix compilation issue introduced in r17-2365-gc5627f93a82591 [PR124058] gcc/ChangeLog: PR driver/124058 * gcc-diagnostic-spec.cc (nowarn_spec_t::nowarn_spec_t): Remove leftover reference to OPT_Wuse_after_free. Signed-off-by: Torbjörn SVENSSON --- diff --git a/gcc/gcc-diagnostic-spec.cc b/gcc/gcc-diagnostic-spec.cc index 94bbd9e5753..8aa876a6e4f 100644 --- a/gcc/gcc-diagnostic-spec.cc +++ b/gcc/gcc-diagnostic-spec.cc @@ -99,7 +99,6 @@ nowarn_spec_t::nowarn_spec_t (opt_code opt) case OPT_Wdangling_pointer_: case OPT_Wreturn_local_addr: - case OPT_Wuse_after_free: case OPT_Wuse_after_free_: m_bits = NW_DANGLING; break;