[Bug fortran/68224] ICE on referencing parameter array with dimension null

2015-11-08 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68224 kargl at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED

[Bug fortran/68224] ICE on referencing parameter array with dimension null

2015-11-08 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68224 --- Comment #5 from kargl at gcc dot gnu.org --- Author: kargl Date: Sun Nov 8 17:25:16 2015 New Revision: 229955 URL: https://gcc.gnu.org/viewcvs?rev=229955=gcc=rev Log: 2015-11-08 Steven G. Kargl PR fortran/68224

[Bug fortran/68224] ICE on referencing parameter array with dimension null

2015-11-08 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68224 --- Comment #6 from kargl at gcc dot gnu.org --- Author: kargl Date: Sun Nov 8 18:05:30 2015 New Revision: 229960 URL: https://gcc.gnu.org/viewcvs?rev=229960=gcc=rev Log: 2015-11-08 Steven G. Kargl PR

[Bug fortran/68224] ICE on referencing parameter array with dimension null

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

[Bug fortran/68224] ICE on referencing parameter array with dimension null

2015-11-07 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68224 kargl at gcc dot gnu.org changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |kargl at gcc dot

[Bug fortran/68224] ICE on referencing parameter array with dimension null

2015-11-07 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68224 kargl at gcc dot gnu.org changed: What|Removed |Added CC||kargl at gcc dot gnu.org ---

[Bug fortran/68224] ICE on referencing parameter array with dimension null

2015-11-05 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68224 --- Comment #1 from Gerhard Steinmetz --- Detected when assignment is separated from declaration : $ cat z6.f90 program p integer, parameter :: c(null()) = [1, 2] integer :: a, b a = c(1) b =