--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-18
20:26 ---
All of these are fixed in 4.1.0. Since 4.0.2 is the last 4.0 release before a
4.1.0 release will be made,
4.0.2 and 4.0.1 were special releases for gfrotran. 4.0.3 should be a normal
release for GCC and
--
What|Removed |Added
AssignedTo|rsandifo at gcc dot gnu dot |unassigned at gcc dot gnu
|org |dot org
Status|REOPENED
--
What|Removed |Added
Target Milestone|4.0.2 |4.0.3
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23373
--- Additional Comments From tkoenig at gcc dot gnu dot org 2005-09-18
19:50 ---
Not fixed in 4.0:
$ cat pointer_function.f90
program Realloc
IMPLICIT NONE
REAL, DIMENSION(:), POINTER :: x
INTEGER :: i
x => NULL()
x => myallocate(x)
contains
FUNCTION myallocate(p)
REAL,