From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 305103858422; Wed, 8 Mar 2023 03:35:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 305103858422 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1678246538; bh=Y7wca3cEA4DC72vgie/VSZSDBC/A6FsS9KOlpBxB+nw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=wF7h1/lSdvnXkM5Uiparo+d2UPK/tkqO1XO4pcfIdSTYE5WnW7Afq+VsJ0RIHiIpb 9gwpd7ao08T+ocJLJ0nUUNbwC5EAheI4kiW4+L3eTQTz9nh5hSs/a1/Qpdu1scmzxJ neT3FxQwQ2HD9EJCPAJj5nMrlZf1MO49ooVKY0qw= From: "jason at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/108773] [13 Regression] ICE in gimplify_var_or_parm_decl, at gimplify.cc:3058 compiling ceph since r13-4563-g1e1847612d7f169f Date: Wed, 08 Mar 2023 03:35:37 +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: X-Bugzilla-Severity: normal X-Bugzilla-Who: jason at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: jason 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=3D108773 --- Comment #13 from Jason Merrill --- (In reply to Jakub Jelinek from comment #5) > /tmp/1.C:18:137: error: no match for =E2=80=98operator=3D=E2=80=99 (opera= nd types are Curiously, changing #include to #include reproduces the IC= E: #include #include #include struct A { std::list > stuff; void foo(); }; void A::foo() { stuff =3D { { "", "" }, { "", "" } }; } The cvise testcase changes the allocator parm to by-value, which hits a different bug than the original.=