From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A79E83858D39; Wed, 8 Feb 2023 08:37:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A79E83858D39 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675845452; bh=NmK9a9kpVSmho8rtDP4kXbNVeqekDD6ayS6EMJMkFkg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Gfaf6aNvDo0roucQX8qKp7SDcVwGjVgygRVIWS6XPtCvvGnAJjranHtmegmFrR5+z FjkQHK5bOmWSJjr2gTrK/bFwD83CovqN9EfrvguJhxsFP1DPih1rRf5jFy57q8Injp 1sDlKXP9dJGQ8G1nWIy2C8dh9EMv28KCc3gG+9ok= From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug rtl-optimization/108711] [13 Regression] ICE in get_equiv, at lra-constraints.cc:534 Date: Wed, 08 Feb 2023 08:37:30 +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: 13.0 X-Bugzilla-Keywords: build, ice-on-valid-code, ra X-Bugzilla-Severity: blocker X-Bugzilla-Who: marxin 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: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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=3D108711 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2023-02-08 Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #3 from Martin Li=C5=A1ka --- Reduced test-case: $ cat goexpr.ii struct Expression_list { Expression_list *copy(); } vals_; struct Parser_expression { Parser_expression(); }; struct Composite_literal_expression : Parser_expression { Composite_literal_expression(bool has_keys, Expression_list *, bool all_are_names) : has_keys_(has_keys), all_are_names_(all_are_names) {} void do_copy(); bool has_keys_; bool all_are_names_; }; void Composite_literal_expression::do_copy() { new Composite_literal_expression(has_keys_, vals_.copy(), all_are_names_); } $ /home/abuild/rpmbuild/BUILD/gcc-13.0.1+git5733/obj-i586-suse-linux/./prev-g= cc/xg++ -B/home/abuild/rpmbuild/BUILD/gcc-13.0.1+git5733/obj-i586-suse-linux/./prev= -gcc/ -fno-exceptions -O2 goexpr.ii -c during RTL pass: reload goexpr.ii: In member function 'void Composite_literal_expression::do_copy()= ': goexpr.ii:17:1: internal compiler error: in get_equiv, at lra-constraints.cc:534 17 | } | ^ 0x84f9177 _start ../sysdeps/i386/start.S:111 Please submit a full bug report, with preprocessed source (by using -freport-bug). Please include the complete backtrace with any bug report. See for instructions.=