[Bug fortran/38389] (DE)ALLOCATE compile time check for same variable

2009-03-31 Thread kargl at gcc dot gnu dot org
--- Comment #3 from kargl at gcc dot gnu dot org 2009-03-31 14:22 --- Fixed on trunk. -- kargl at gcc dot gnu dot org changed: What|Removed |Added Status|ASSI

[Bug fortran/38389] (DE)ALLOCATE compile time check for same variable

2008-12-05 Thread kargl at gcc dot gnu dot org
--- Comment #2 from kargl at gcc dot gnu dot org 2008-12-05 21:24 --- I have a patch for the original problem. deallocate_alloc_opt_1.f90:23.14-17: deallocate(i, i) 1 2 Error: Allocate-object at (1) also appears at (2) -- kargl at gcc dot gnu dot org changed:

[Bug fortran/38389] (DE)ALLOCATE compile time check for same variable

2008-12-05 Thread kargl at gcc dot gnu dot org
--- Comment #1 from kargl at gcc dot gnu dot org 2008-12-05 21:02 --- I'll take this as part of the [de]allocate work. Note, this also causes a segfault with all versions of gfortran program a implicit none integer, allocatable :: i(:) allocate(i(4)) deallocate(i, stat=i(1)) en