From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 1DA6B3858D35; Mon, 13 Feb 2023 16:11:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1DA6B3858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676304684; bh=TjRh8Z4E72+PpYHXCSVsJdmcOaou/ufI3cTFD4yuSzg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=MQMjVZUod7jMXcH7xnk3gTYd8Ai+MWNqX0bhZFXNPoDTbbtMWemcqPSroTQNHjBWk sVPeKzHcoNmHg/Jjr7Y4ZdJ0HLPeEHWPzuwHQKxumNnhXfu4VsloCID8M2HOwjoIBG bwR53FWjLOA557rUnAr9h3fUfWG68w0xQwHFDieA= 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 16:11:23 +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 #9 from Jakub Jelinek --- Well, the reduction isn't exactly valid though, given how it defines std::list/array. I guess I could retry reduce with class RGWSyncTraceManager { std::list > admin_commands; public: int hook_to_admin_command(); }; int RGWSyncTraceManager::hook_to_admin_command() { admin_commands =3D { { "sync trace show name=3Dsearch,type=3DCephString,req=3Dfalse", "sync trace = show [filter_str]: show current multis ite tracing information" }, { "sync trace history name=3Dsearch,type=3DCephString,req=3Dfalse", "sync trace history [filter_s= tr]: show history of multisite tracing inf ormation" }, { "sync trace active name=3Dsearch,type=3DCephString,req=3Dfalse", "show active multisite sync e= ntities information" }, { "sync trace active_short name=3Dsearch,type=3DCephString,req=3Dfalse", "show active mu= ltisite sync entities entries" } }; return 0; } as forced last few lines.=