public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/95541] New: ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909
@ 2020-06-04 18:05 gscfq@t-online.de
  2020-06-04 18:06 ` [Bug fortran/95541] " gscfq@t-online.de
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: gscfq@t-online.de @ 2020-06-04 18:05 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95541

            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 = [1, 2, 3]
   x(2)%a = [4, 5, 6]
   associate (y => x(:)%a(3))
      print *, y
   end associate
   associate (y => 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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug fortran/95541] ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909
  2020-06-04 18:05 [Bug fortran/95541] New: ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909 gscfq@t-online.de
@ 2020-06-04 18:06 ` gscfq@t-online.de
  2020-06-08 22:08 ` [Bug fortran/95541] [PDT] " dominiq at lps dot ens.fr
  2023-06-30  8:14 ` pault at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: gscfq@t-online.de @ 2020-06-04 18:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95541

G. Steinmetz <gscfq@t-online.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code

--- Comment #1 from G. Steinmetz <gscfq@t-online.de> ---

This variant works :


$ cat z2.f90
program p
   type t(n)
      integer, len :: n
      integer :: a(n)
   end type
   type(t(3)) :: x(2)
   x(1)%a = [1, 2, 3]
   x(2)%a = [4, 5, 6]
   associate (y => x(2)%a(3))
      print *, y
   end associate
   associate (y => x(2)%a)
      print *, y
   end associate
end


$ gfortran-11-20200531 z2.f90 && ./a.out
           6
           4           5           6
$

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug fortran/95541] [PDT] ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909
  2020-06-04 18:05 [Bug fortran/95541] New: ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909 gscfq@t-online.de
  2020-06-04 18:06 ` [Bug fortran/95541] " gscfq@t-online.de
@ 2020-06-08 22:08 ` dominiq at lps dot ens.fr
  2023-06-30  8:14 ` pault at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: dominiq at lps dot ens.fr @ 2020-06-08 22:08 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95541

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|ICE in                      |[PDT] ICE in
                   |gfc_get_dataptr_offset, at  |gfc_get_dataptr_offset, at
                   |fortran/trans-array.c:6909  |fortran/trans-array.c:6909
     Ever confirmed|0                           |1
                 CC|                            |pault at gcc dot gnu.org
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2020-06-08

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug fortran/95541] [PDT] ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909
  2020-06-04 18:05 [Bug fortran/95541] New: ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909 gscfq@t-online.de
  2020-06-04 18:06 ` [Bug fortran/95541] " gscfq@t-online.de
  2020-06-08 22:08 ` [Bug fortran/95541] [PDT] " dominiq at lps dot ens.fr
@ 2023-06-30  8:14 ` pault at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pault at gcc dot gnu.org @ 2023-06-30  8:14 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95541

Paul Thomas <pault at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |82173

--- Comment #2 from Paul Thomas <pault at gcc dot gnu.org> ---
Added to PDT meta-bug


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82173
[Bug 82173] [meta-bug] [PDT] Parameterized derived type errors

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-06-30  8:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-04 18:05 [Bug fortran/95541] New: ICE in gfc_get_dataptr_offset, at fortran/trans-array.c:6909 gscfq@t-online.de
2020-06-04 18:06 ` [Bug fortran/95541] " gscfq@t-online.de
2020-06-08 22:08 ` [Bug fortran/95541] [PDT] " dominiq at lps dot ens.fr
2023-06-30  8:14 ` pault at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).