From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5CBDC388551A; Wed, 26 Oct 2022 16:30:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5CBDC388551A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666801845; bh=dYGrjLlyWuobKd+Tt82rFleYFiRSf4uG56FFkftZVCg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=QHW3P9BpgrmFS/AIKOlIfpfoT8kgqhSFfjtwPQ/w3JWIdAYOo498A4B90oNMgMvxF 6aWY3/HQQyXo0JMEghbes8ZayFdCN6zws5fSYV7EBcX+qCaIYncgK0fMpS7ylLLQjR VnODKNdywOfxDRqIw9YtfWNjuj0lCE8QalTsTqNQ= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/107353] [13 regression] Numerous ICEs after r13-3416-g1d561e1851c466 Date: Wed, 26 Oct 2022 16:30:42 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 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=3D107353 --- Comment #14 from CVS Commits --- The master branch has been updated by Alexander Monakov : https://gcc.gnu.org/g:82e629c26647313be406c41a01e6868cfad0f289 commit r13-3509-g82e629c26647313be406c41a01e6868cfad0f289 Author: Alexander Monakov Date: Wed Oct 26 16:37:34 2022 +0300 ipa-visibility: remove assert in TLS optimization [PR107353] When upgrading TLS access model based on optimized symbol visibility status, we attempted to assert that recomputing the model would not weaken it. It turns out that C, C++, and Fortran front-ends all can (unintentionally) assign a stronger model than what can be derived from the declaration. Let's act conservatively instead of asserting, at least as long as such pre-existing issues remain. gcc/ChangeLog: PR other/107353 * ipa-visibility.cc (function_and_variable_visibility): Conditionally upgrade TLS model instead of asserting.=