[Bug fortran/83976] ICE in gfc_add_component_ref, at fortran/class.c:211

2022-01-26 Thread gscfq--- via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83976 --- Comment #5 from G. Steinmetz --- Slightly shorter : $ cat zz1.f90 program p type t end type class(t), allocatable :: x type(t) :: y y = (x) end $ cat zz2.f90 program p type t end type class(t) :: x type(t) :: y

[Bug fortran/83976] ICE in gfc_add_component_ref, at fortran/class.c:211

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

[Bug fortran/83976] ICE in gfc_add_component_ref, at fortran/class.c:211

2018-01-23 Thread gs...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83976 --- Comment #3 from G. Steinmetz --- A class/type issue - changing x from class to type : $ cat z3.f90 program p type t integer :: a end type type(t), allocatable :: x type(t) :: z = t(3) x = z z =

[Bug fortran/83976] ICE in gfc_add_component_ref, at fortran/class.c:211

2018-01-22 Thread anlauf at gmx dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83976 Harald Anlauf changed: What|Removed |Added CC||anlauf at gmx dot de --- Comment #2

[Bug fortran/83976] ICE in gfc_add_component_ref, at fortran/class.c:211

2018-01-22 Thread gs...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83976 --- Comment #1 from G. Steinmetz --- This variant works as expected : $ cat z2.f90 program p type t integer :: a end type class(t), allocatable :: x type(t) :: z = t(3) x = z z = x print *, z end