[Bug fortran/82970] ICE in vptr_field_get, at fortran/trans-expr.c:264

2021-08-02 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82970 Andrew Pinski changed: What|Removed |Added Last reconfirmed|2017-11-13 00:00:00 |2021-8-2 --- Comment #3 from Andrew Pins

[Bug fortran/82970] ICE in vptr_field_get, at fortran/trans-expr.c:264

2017-11-13 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82970 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/82970] ICE in vptr_field_get, at fortran/trans-expr.c:264

2017-11-13 Thread gs...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82970 --- Comment #1 from G. Steinmetz --- This variant compiles, of course : $ cat z3.f90 program p type t end type class(t), allocatable :: x(:)[:] class(t), allocatable :: z(:) allocate (x(2)[*]) allocate (z, source=x) end