From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 88A4F385735E; Fri, 10 Nov 2023 07:24:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 88A4F385735E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1699601056; bh=Hf61ZMTiTa+4yCFLw+oRv6pzcCY42w8wVCaxWBMHF1Q=; h=From:To:Subject:Date:In-Reply-To:References:From; b=BdAdWQcecvuqimNHu+1z8hah3nlVVnoEC/REI0FGzv52SOCRU+KgUJeTEGFRwQZb/ +29U0b9dnkj3oPy+PB/zFOgn+7yGqJ19FFtMExV2h2udLnOqdTsGGazCxTqaoAmq1D tdDbfFGxmcmtn1lO7/8KP0zrhT/OLrL7CWWyOxWw= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/110961] internal compiler error: segmentation fault Date: Fri, 10 Nov 2023 07:24:15 +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.1.0 X-Bugzilla-Keywords: c++-lambda, needs-reduction X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia 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: 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=3D110961 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed| |2023-11-10 Ever confirmed|0 |1 Status|UNCONFIRMED |NEW --- Comment #4 from Andrew Pinski --- The smallest I could get right now: ``` namespace std { typedef long unsigned int size_t; template struct condition= al {}; template using conditional_t =3D typename conditional<_Cond, _Iftrue, _Iffalse>::typ= e; template inline constexpr size_t tuple_size_v =3D tuple_size<_Tp>::value; template struct DispatchTable { using Typ =3D std::conditional_t(std::index_sequence) {}(std::make_index_sequence{})), int>; template > static auto constexpr TypeIndex =3D detail::TypeIndexImpl(); static constexpr typename Ext::value_type BatchSize =3D Sizes[TypeIndex]; ``` The above is an ICE after errors but I suspect this is the same as the other decltype of a lambda issues too.=