[Bug fortran/67616] ICE on data initialization of type variable in block

2015-10-02 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67616 kargl at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--

[Bug fortran/67616] ICE on data initialization of type variable in block

2015-10-02 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67616 --- Comment #4 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Oct 2 21:11:47 2015 New Revision: 228427 URL: https://gcc.gnu.org/viewcvs?rev=228427&root=gcc&view=rev Log: 2015-10-01 Steven G. Kargl PR fortran/67616

[Bug fortran/67616] ICE on data initialization of type variable in block

2015-10-01 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67616 --- Comment #3 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Oct 2 00:45:59 2015 New Revision: 228363 URL: https://gcc.gnu.org/viewcvs?rev=228363&root=gcc&view=rev Log: 2015-10-01 Steven G. Kargl PR fortran/67616

[Bug fortran/67616] ICE on data initialization of type variable in block

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

[Bug fortran/67616] ICE on data initialization of type variable in block

2015-09-17 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67616 --- Comment #1 from Gerhard Steinmetz --- Compiles without block : program p type t end type type(t) :: x data x /t()/ end Compiles with block and intrinsic type : program p block integer :: x data x /1/ end blo