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/16207] New: gfortran unimplemented part of language


File: gfortran-bug2.f90

program gfortran_bug2
  integer, parameter, dimension (2) :: J = (/ 3,4 /)
  integer, parameter, dimension (3) :: L = (/ 2,1,2 /)
  integer :: n
  do n = 1, 3
     print *, "n, L(n) =", n, L(n)
     print *, "   J(1:L(n))    =", J(1:L(n))
     print *, "(/ J(1:L(n)) /) =", (/ J(1:L(n)) /)
     print *
  end do
end program gfortran_bug2

Compiling the above code:

% gfortran -c gfortran-bug2.f90
gfortran-bug2.f90: In function `MAIN__':
gfortran-bug2.f90:8: fatal error: gfc_todo: Not Implemented: Unable to find
scalarization loop specifier
compilation terminated.

-- 
           Summary: gfortran unimplemented part of language
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: anlauf at hep dot tu-darmstadt dot de
                CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: i686-pc-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16207


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