From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 4C8003858C50; Tue, 27 Sep 2022 16:20:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4C8003858C50 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1664295637; bh=kPPRlL9qGwgTX7vLox1243XZswLY68QBjRxqcWM77j8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=I/VoznVGV9o6mQomROrZdVFwKrVzIXbGpxzitssBL/gpPjLHiRaLUzFj8K+Jb1F2R hfSRfSL3JoXc6piD6LSPIfKXAX/zUr4eNlNM6h3BZ7ISLPkahWKe9hlGdufD6XHC+0 8hgyEqCcefyuv9gLmlMSsnV8v9PRUtjD+U6KVtZs= From: "gscfq@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/107054] [10/11/12/13 Regression] ICE in gfc_simplify_unpack, at fortran/simplify.cc:8461 Date: Tue, 27 Sep 2022 16:20:37 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: gscfq@t-online.de X-Bugzilla-Status: UNCONFIRMED 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: keywords 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=3D107054 G. Steinmetz changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-invalid-code --- Comment #1 from G. Steinmetz --- For reference : $ cat z0.f90 program p type t integer :: n =3D 0 end type type(t), parameter :: a(4) =3D t(2) type(t), parameter :: b(4) =3D reshape(a,[4]) type(t), parameter :: c(2) =3D pack(b,[.false.,.true.,.false.,.true.]) type(t), parameter :: d(4) =3D unpack(c,[.false.,.true.,.false.,.true.],= a) end=