public inbox for gcc-cvs@sourceware.org help / color / mirror / Atom feed
From: Richard Biener <rguenth@gcc.gnu.org> To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-6691] tree-optimization/109139 - fix .DEFERRED_INIT removal Date: Wed, 15 Mar 2023 09:29:56 +0000 (GMT) [thread overview] Message-ID: <20230315092956.3E78438582A4@sourceware.org> (raw) https://gcc.gnu.org/g:0fc541efc340535d212cd685176bd9592905de8a commit r13-6691-g0fc541efc340535d212cd685176bd9592905de8a Author: Richard Biener <rguenther@suse.de> Date: Wed Mar 15 09:47:18 2023 +0100 tree-optimization/109139 - fix .DEFERRED_INIT removal The following make sure to strip MEMs when looking for unused decls on the LHS of .DEFERRED_INIT. PR tree-optimization/109139 * tree-ssa-live.cc (remove_unused_locals): Look at the base address for unused decls on the LHS of .DEFERRED_INIT. * gcc.dg/torture/pr109139.c: New testcase. Diff: --- gcc/testsuite/gcc.dg/torture/pr109139.c | 12 ++++++++++++ gcc/tree-ssa-live.cc | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/torture/pr109139.c b/gcc/testsuite/gcc.dg/torture/pr109139.c new file mode 100644 index 00000000000..9fa97ebc665 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr109139.c @@ -0,0 +1,12 @@ +/* { dg-do compile } */ +/* { dg-additional-options "-ftrivial-auto-var-init=zero" } */ + +const int COMPARE_CANDIDATE; +char ipmi_ek_compare_link_record1_0, ipmi_ek_compare_link_record2_0; +void ipmi_ek_compare_link() +{ + for (; ipmi_ek_compare_link_record1_0;) + for (; ipmi_ek_compare_link_record2_0;) { + int link[COMPARE_CANDIDATE]; + } +} diff --git a/gcc/tree-ssa-live.cc b/gcc/tree-ssa-live.cc index 9118e82b4f1..1be92956cc5 100644 --- a/gcc/tree-ssa-live.cc +++ b/gcc/tree-ssa-live.cc @@ -897,7 +897,8 @@ remove_unused_locals (void) else if (gimple_call_internal_p (stmt, IFN_DEFERRED_INIT)) { tree lhs = gimple_call_lhs (stmt); - if (DECL_P (lhs) && !is_used_p (lhs)) + tree base = get_base_address (lhs); + if (DECL_P (base) && !is_used_p (base)) { unlink_stmt_vdef (stmt); gsi_remove (&gsi, true);
reply other threads:[~2023-03-15 9:29 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20230315092956.3E78438582A4@sourceware.org \ --to=rguenth@gcc.gnu.org \ --cc=gcc-cvs@gcc.gnu.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).