From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A0C41385842F; Wed, 14 Sep 2022 18:51:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A0C41385842F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663181477; bh=/rC7HQtSfVkOA8qMjswU8pV/Z9tV+asNnZfQ8DEqINQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=lhgOd47AT/JcRE3Kk58+y/ohOxubiqmrgUcglBmirg77ZscTk/tVBIAboHkUoojXk vLO2/KiPD//V4PMRNbGAxmlb8IvJb1h8772zNe1fUPBLRjZtJ2z8xpsl0d790FeSLs +HIyKsfgqXW+QpUCgN51wbRwFJC0Fxs91j75GDEU= From: "gscfq@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/106944] ICE in gfc_build_array_ref, at fortran/trans.cc:482 Date: Wed, 14 Sep 2022 18:51:17 +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-valid-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=3D106944 G. Steinmetz changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code --- Comment #1 from G. Steinmetz --- Similar for these variants : $ cat z3.f90 module m type t(n) integer, len :: n =3D 4 end type contains subroutine s(x) type(t) :: x(..) select rank (x) end select end end $ cat z4.f90 module m type t(n) integer, kind :: n =3D 4 end type contains subroutine s(x) type(t) :: x(..) select rank (x) end select end end=