From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7C04538308DE; Fri, 16 Dec 2022 09:29:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7C04538308DE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1671182954; bh=mhawsEH399IpiykOypBVmZ5JfVws6TWL6+gpyUbj+4Q=; h=From:To:Subject:Date:In-Reply-To:References:From; b=BlZauFiK7z+uj4/d6caMVUZknQF0gXx7GcpluA+QbDSzicF1BRqygPgP4++fPbppf VLQKa9BSrN6//Qw/aQNWnRcSQneNcyWiARKXx7BXNVqbeGdKjdbKW+ppSBQssX8Hbk 4iwYbR7aBzWbjaMYcB9qpl5c+KtV9S5xSDhwYgqU= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/108086] internal compiler error: in set_accesses, at rtl-ssa/internals.inl:449 Date: Fri, 16 Dec 2022 09:29:12 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: rtl-optimization X-Bugzilla-Version: 12.2.0 X-Bugzilla-Keywords: compile-time-hog, needs-reduction X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D108086 --- Comment #11 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:340ddeae6611f6ab524211a009e97a85b4bba549 commit r13-4740-g340ddeae6611f6ab524211a009e97a85b4bba549 Author: Richard Biener Date: Fri Dec 16 09:46:25 2022 +0100 middle-end/108086 - remove PR28238 fix superseeded by PR34018 fix There's quite special code in copy_bb that handles inline substitution of a non-invariant address in place of an invariant one that's now handled by more generic handling of this case in remap_gimple_op_r so this removes the special casing that happens in a hot path, providing a small speedup. PR middle-end/108086 * tree-inline.cc (copy_bb): Remove handling of (foo *)&this->m substitution which is done in remap_gimple_op_r via re-gimplifying.=