[Bug fortran/92885] New: ICE (segfault) with allocatable coarrays

2019-12-10 Thread davidgkinniburgh at yahoo dot co.uk
Assignee: unassigned at gcc dot gnu.org Reporter: davidgkinniburgh at yahoo dot co.uk Target Milestone: --- Please can someone check this out? Compiles with ifort 19.0.5.281. Thanks. program caf_alloc_gfortran_ice ! coarray program ! gfortran -c -Wall -fcoarray

[Bug fortran/70673] [5/6 Regression] ICE with module containing functions with allocatable character scalars

2016-04-15 Thread davidgkinniburgh at yahoo dot co.uk
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70673 --- Comment #4 from David Kinniburgh --- It seems the problem usually arises when there is reassignment in one line, eg character(:), allocatable: s, t s = s(2:) ! or even s = s whereas forcing the temporary t = s(2:) s = t seems to work.

[Bug fortran/70673] ICE with module containing functions with allocatable character scalars

2016-04-14 Thread davidgkinniburgh at yahoo dot co.uk
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70673 --- Comment #2 from David Kinniburgh --- Ah, maybe I reduced this too far as a1 and a2 are obviously uninitialized... Is this better - it also produces an ICE? module m contains subroutine s(in) character(*), intent(in) :: in character(:),

[Bug fortran/70673] ICE with module containing functions with allocatable character scalars

2016-04-14 Thread davidgkinniburgh at yahoo dot co.uk
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70673 --- Comment #1 from David Kinniburgh --- Ah, maybe I reduced this too far as a1 and a2 are obviously uninitialized, but still...

[Bug fortran/70673] New: ICE with module containing functions with allocatable character scalars

2016-04-14 Thread davidgkinniburgh at yahoo dot co.uk
: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: davidgkinniburgh at yahoo dot co.uk Target Milestone: --- module m contains subroutine s character(:), allocatable :: a1 a1 = a1 return contains integer function f1

[Bug fortran/67977] allocatable strings, array section reallocated - non-standard behaviour

2015-10-19 Thread davidgkinniburgh at yahoo dot co.uk
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67977 David Kinniburgh changed: What|Removed |Added CC||davidgkinniburgh at yahoo dot co.u

[Bug fortran/63903] New: ICE with assignment of allocatable character array

2014-11-15 Thread davidgkinniburgh at yahoo dot co.uk
: fortran Assignee: unassigned at gcc dot gnu.org Reporter: davidgkinniburgh at yahoo dot co.uk CHARACTER (LEN=:), ALLOCATABLE :: temp(:), s(:) ALLOCATE(CHARACTER(LEN=2) :: s(2)) s = 'ab' temp = s print *, temp = , temp end gfortran -c -Wall testgcc50.f90 testgcc50.f90:4:0

[Bug fortran/63469] New: Automatic reallocation of allocatable scalar length even when substring implicitly specified

2014-10-06 Thread davidgkinniburgh at yahoo dot co.uk
Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: davidgkinniburgh at yahoo dot co.uk CHARACTER(:), ALLOCATABLE :: s ALLOCATE (character(32) :: s) s(1:32) = 'string' print *, 'Length of ', s

[Bug fortran/51652] Allocate with type-spec and source-expr: check whether length type-parameter is the same is lacking

2011-12-22 Thread davidgkinniburgh at yahoo dot co.uk
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51652 --- Comment #3 from David Kinniburgh davidgkinniburgh at yahoo dot co.uk 2011-12-22 16:21:09 UTC --- Sorry, I wasn't up-to-date on the long history of allocatable scalars and dt components, and hadn't checked the documentation in detail recently

[Bug fortran/51652] New: [F03] ICE with allocatable scalars

2011-12-21 Thread davidgkinniburgh at yahoo dot co.uk
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51652 Bug #: 51652 Summary: [F03] ICE with allocatable scalars Classification: Unclassified Product: gcc Version: 4.7.0 Status: UNCONFIRMED Severity: normal Priority: P3