[Bug fortran/67505] New: Runtime error: recursive call to final subroutine

2015-09-08 Thread kergonath at me dot com
: fortran Assignee: unassigned at gcc dot gnu.org Reporter: kergonath at me dot com Target Milestone: --- When compiled with -fcheck=all, the included code crashes with the following error message: At line 16 of file foo.f90 Fortran runtime error: Recursive call to nonrecursive

[Bug fortran/60795] [4.7/4.8/4.9 Regression] Wrong length when allocating character array

2014-04-10 Thread kergonath at me dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60795 --- Comment #4 from Kergonath kergonath at me dot com --- The slightly modified version: module m contains subroutine allocate_array(s_array) character(:), dimension(:), allocatable, intent(out) :: s_array allocate(character(2

[Bug fortran/60795] New: Wrong length when allocating character array

2014-04-09 Thread kergonath at me dot com
: fortran Assignee: unassigned at gcc dot gnu.org Reporter: kergonath at me dot com In the following program: program stringtest character(:), dimension(:), allocatable :: s allocate(character(1) :: s(10)) write(*,*) size(s) write(*,*) len(s) end program the elements