This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/19925] Implied do-loop in an initialization expression is broken



------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]