From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D3D7E3857C79; Mon, 6 Jul 2020 18:01:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D3D7E3857C79 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1594058511; bh=gbS7cOxaAGhS9SSCa12TIK+vQumXkAulnwGKIFK0B9g=; h=From:To:Subject:Date:In-Reply-To:References:From; b=aKNCvPPnr7mq9nMwyMEuT7dfLh/bs4SlAseRf25ijNFCdRme8/4SmsAhxDphrqP8a PoW4WEtR0H33DOuuAmIIfpG5UDG6oSq3LZSRxG/vBSgIQBujmwpLhyaHCkKmpr218R fwbf74FNrmx2FUmEX+5VVoOGuUOyQ3atMz46fbaM= From: "gscfq@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/96087] [9/10/11 Regression] ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1575 Date: Mon, 06 Jul 2020 18:01:51 +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: 11.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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jul 2020 18:01:51 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D96087 G. Steinmetz changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice-on-valid-code --- Comment #1 from G. Steinmetz --- This related valid case also ICEs, but down to r6 : $ cat z2.f90 module m interface module subroutine f(n, z) integer, intent(in) :: n real :: z(n) end end interface contains module procedure f z =3D 1 end procedure end=