http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47516
Summary: ICE with reallocate on assignment w/
--disable-bootstrap
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Keywords: ice-on-valid-code
Severity: normal
Priority: P3
Component: fortran
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected], [email protected]
Moved from bug 35810 comment 12. Janus wrote there the following; I have not
tried to confirm it.
-------- Bug 35810 Comment 12 janus 2010-12-30 13:18:14 CET ---------
Note: realloc_on_assign_2.f03 fails on current trunk when building with
--disable-bootstrap (system compiler: gcc version 4.5.0 20100604
[gcc-4_5-branch revision 160292]):
realloc_on_assign_2.f03: In function ‘test5’:
realloc_on_assign_2.f03:101:0: internal compiler error: in fold_convert_loc, at
fold-const.c:1906
Reduced test case:
program test5
real, allocatable, dimension (:,:) :: xwrkt
xwrkt = trs2a2 ()
contains
function trs2a2 ()
real, dimension (1:2,1:2) :: trs2a2
trs2a2 = 0.0
end function
end