From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 1D9223857C59; Wed, 6 Mar 2024 21:34:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1D9223857C59 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1709760840; bh=TTg4mwx4lzVi9jarRCSAveM2YJyVaS7v4j5MP9aTi1Q=; h=From:To:Subject:Date:In-Reply-To:References:From; b=jaE1IIA3Wr5B2CAmWkgPGotvK0bAsYXescleDiItCjNw09pJVT5tvnnZ/VcC/243R zBo7bVTeadk/1HPzJeUhokIiZ2ncuH0n1q/HknZZ42WG9Nju9o3GROxd4pFVbddN9k A+acfDNjs7xcqrLoxcPgxAVLdyZBBtEisSSr1l4M= From: "ppalka at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/108080] ICE: in core_vals, at cp/module.cc:6262 with -fmodule-header Date: Wed, 06 Mar 2024 21:33:56 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ppalka 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: cc cf_reconfirmed_on everconfirmed bug_status 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=3D108080 Patrick Palka changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ppalka at gcc dot gnu.org Last reconfirmed| |2024-03-06 Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #9 from Patrick Palka --- We don't implement OPTIMIZATION_NODE and TARGET_OPTION_NODE streaming: case OPTIMIZATION_NODE: case TARGET_OPTION_NODE: // FIXME: Our representation for these two nodes is a cache of // the resulting set of options. Not a record of the options // that got changed by a particular attribute or pragma. Should // we record that, or should we record the diff from the command // line options? The latter seems the right behaviour, but is // (a) harder, and I guess could introduce strangeness if the // importer has set some incompatible set of optimization flags? gcc_unreachable (); break;=