[Bug fortran/19925] Implied do-loop in an initialization expression is broken
jvdelisle at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Mon Nov 26 06:28:00 GMT 2007
------- Comment #12 from jvdelisle at gcc dot gnu dot org 2007-11-26 06:28 -------
OK, tracing this farther, the correct iterator makes it to translation at
gfc_conv_array_initializer. Here we simply have not implemented code to handle
it and we have this:
if (c->iterator)
{
/* Problems occur when we get something like
integer :: a(lots) = (/(i, i=1,lots)/) */
/* TODO: Unexpanded array initializers. */
internal_error
("Possible frontend bug: array constructor not expanded");
}
So I keep at it.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19925
More information about the Gcc-bugs
mailing list