[Bug fortran/50174] [4.7 Regression] ICE on derived type allocation
janus at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Wed Aug 24 11:36:00 GMT 2011
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50174
janus at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |janus at gcc dot gnu.org
Summary|internal compiler error: |[4.7 Regression] ICE on
|derived type allocation |derived type allocation
--- Comment #1 from janus at gcc dot gnu.org 2011-08-24 11:34:30 UTC ---
Confirmed on 4.7 trunk. Works on 4.6.
Reduced test case:
implicit none
type settee
real,allocatable :: seat(:)
end type settee
integer :: is = 1, ie = 3
type(settee),allocatable :: set1(:)
allocate (set1(is:ie))
end
More information about the Gcc-bugs
mailing list