[Bug fortran/59093] internal compiler error: Segmentation fault compiling F90 File

janus at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Sat Jan 4 17:17:00 GMT 2014


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

janus at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |janus at gcc dot gnu.org

--- Comment #3 from janus at gcc dot gnu.org ---
Further reduced test case:

implicit none

type :: MAPL_LocStream
  type(MAPL_LocStreamType), pointer :: Ptr
end type

type MAPL_Tiling
   integer :: IM
end type

type MAPL_LocStreamType
   type(MAPL_Tiling), pointer  :: Tiling(:)
end type

contains

  subroutine MAPL_LocStreamGet (GRIDIM)
    type(MAPL_LocStream) :: LocStream
    integer, pointer     :: GRIDIM(:)

    GRIDIM => LocStream%Ptr%Tiling(:)%IM

  end subroutine

end



More information about the Gcc-bugs mailing list