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/32710] New: ICE: namelist and subroutine with the same name


program samename

contains


  subroutine readInput
    implicit none
    integer:: a,b,c
    NAMELIST /name/ a,b,c
    read(5,nml=name)
  end subroutine readInput


  subroutine name()

  end subroutine name


end program


this code fails with the following error (gfortran 4.3 and 4.1.3):

samename.f90: In function ?readinput?:
samename.f90:6: internal compiler error: Segmentation fault

for gfortran 4.2 the error message is:

samename.f90: In function ?readinput?:
samename.f90:6: internal compiler error: in gfc_typenode_for_spec, at
fortran/trans-types.c:693


just defining the namelist works fine, only the read statement triggers the ICE


-- 
           Summary: ICE: namelist and subroutine with the same name
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jaydub66 at gmail dot com


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


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