From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D6D70385DC14; Thu, 4 Jun 2020 18:05:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D6D70385DC14 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1591293952; bh=304xYiUVN/7wHKvX4llol/Ep5/3r30HDoh0ibiZgNxs=; h=From:To:Subject:Date:From; b=O93aI27MGHKipA/WXYSsWAGkvfVp9RTBjK3Owq1pmklAxcCx9+0s58DJK5KDoAXkg IKhJm4cvKfttu9Kc+VVYAdntRDTJ/RsNI2Jjk1LBaC079a2EHy/wq9p0JJlM1I4Dx+ iZpiBi0O9Ok9dL/JECLC//lH0cO1sVGlHV0/o6Vo= From: "gscfq@t-online.de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/95541] New: ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909 Date: Thu, 04 Jun 2020 18:05:52 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: 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: Thu, 04 Jun 2020 18:05:53 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95541 Bug ID: 95541 Summary: ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909 Product: gcc Version: 11.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: gscfq@t-online.de Target Milestone: --- Started with r8, before 20180525 : $ cat z1.f90 program p type t(n) integer, len :: n integer :: a(n) end type type(t(3)) :: x(2) x(1)%a =3D [1, 2, 3] x(2)%a =3D [4, 5, 6] associate (y =3D> x(:)%a(3)) print *, y end associate associate (y =3D> x%a(3)) print *, y end associate end $ gfortran-11-20200531 -c z1.f90 z1.f90:10:0: 10 | print *, y | internal compiler error: in gfc_get_dataptr_offset, at fortran/trans-array.c:6909 0x70f33a gfc_get_dataptr_offset(stmtblock_t*, tree_node*, tree_node*, tree_node*, bool, gfc_expr*) ../../gcc/fortran/trans-array.c:6908 0x7141e1 gfc_conv_expr_descriptor(gfc_se*, gfc_expr*) ../../gcc/fortran/trans-array.c:7766 0x76edb2 trans_associate_var ../../gcc/fortran/trans-stmt.c:1890 0x775a71 gfc_trans_block_construct(gfc_code*) ../../gcc/fortran/trans-stmt.c:2283 0x7016d7 trans_code ../../gcc/fortran/trans.c:1960 0x72ad24 gfc_generate_function_code(gfc_namespace*) ../../gcc/fortran/trans-decl.c:6840 0x6b25e6 translate_all_program_units ../../gcc/fortran/parse.c:6306 0x6b25e6 gfc_parse_file() ../../gcc/fortran/parse.c:6545 0x6fdfff gfc_be_parse_file ../../gcc/fortran/f95-lang.c:210=