From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A58913858404; Mon, 13 Feb 2023 17:07:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A58913858404 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676308058; bh=N3saht1eGEgVa1lEiKfM8YMXvL+YgVB9A9TEJuXCH9w=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Inp8JDGIFq9OQrCxvidozFt83w8WRcNnYMsO8rQeMQHTmpKbi9/37h+Y+7IidNUvE qYPzOgOPR7yC9I0THNQgabWxSDhbnZgv27zGRLoGEq7lyHQcGJ1muAOQkmwOlmYXey lQMqGvmLwtf9YZsdkpohWmwMyzUEHuhG736evNqs= From: "jakub 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: Mon, 13 Feb 2023 17:07:38 +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: jakub 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=3D108773 --- Comment #11 from Jakub Jelinek --- Even better don't make second initializer_list member __rebind: namespace std { struct __new_allocator {}; template using __allocator_base =3D __new_allocator; struct allocator : __allocator_base {}; template struct initializer_list { void *_M_array; decltype(sizeof 0) _M_len; }; template struct basic_string { basic_string(const T *, allocator =3D allocator()); ~basic_string(); }; using string =3D basic_string; template struct array { T _M_elems; }; template struct list { list &operator=3D(initializer_list); }; } struct RGWSyncTraceManager { std::list> admin_commands; void hook_to_admin_command(); }; void RGWSyncTraceManager::hook_to_admin_command() { admin_commands =3D {{""}, {""}}; }=