[Bug fortran/71067] ICE on data initialization with insufficient value

2016-06-29 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71067 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/71067] ICE on data initialization with insufficient value or wrong boz-constants

2016-05-11 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71067 --- Comment #1 from Gerhard Steinmetz --- A) correct with parameter : $ cat z3.f90 program p integer, parameter :: i = 0 integer :: z(2) data z /2*i/ print *, z end $ gfortran-6 z3.f90 $ a.out 0 0 B) wrong c