From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 84AEF3857735; Wed, 3 May 2023 10:54:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 84AEF3857735 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683111294; bh=GFcHp4yz5Eq+mdEpAa1+/o390wYbfh54YdE/TRCTOvM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=iTAHDAvjmTo/siCOqiEYgleHOaZEi6DwPi7NX7Q+i4CUxdDZbSiP9BXk3M8kX+g1+ x3/2faySma0Z71o4j85eTqQxBe0Df3wbgXFo2rbr7FySeoeGW53oJmFCPj6LrVIxFq 1X0kRRV5Pf5cD/p/D9GqrPFwZyreJ8rJ3s0Bl4hw= From: "marxin at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/109695] [14 Regression] crash in gimple_ranger::range_of_expr Date: Wed, 03 May 2023 10:54:53 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: marxin at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: aldyh at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc 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=3D109695 Martin Li=C5=A1ka changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marxin at gcc dot gnu.org --- Comment #9 from Martin Li=C5=A1ka --- I've got a pretty nice reduced test-case: $ cat pr109695.C struct basic_string { basic_string(char *); ~basic_string(); }; struct { basic_string short_opt; basic_string long_opt; basic_string parameter; basic_string description; } flatc_options[]{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",= "", "", "", "", "", "", "", "", ""}; $ g++ pr109695.C -c -Wno-write-strings g++: internal compiler error: Segmentation fault signal terminated program cc1plus Please submit a full bug report, with preprocessed source (by using -freport-bug). See for instructions. $ g++-13 pr109695.C -c -Wno-write-strings=