https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70913
anlauf at gcc dot gnu.org changed:
What|Removed |Added
CC|anlauf at gmx dot de |
--- Comment #8 from a
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70913
anlauf at gcc dot gnu.org changed:
What|Removed |Added
CC||anlauf at gcc dot gnu.org
---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70913
kargl at gcc dot gnu.org changed:
What|Removed |Added
CC||kargl at gcc dot gnu.org
--- C
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70913
Harald Anlauf changed:
What|Removed |Added
CC||anlauf at gmx dot de
--- Comment #5 from
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70913
--- Comment #4 from Dominique d'Humieres ---
AFAICT the tests in comment 0 and 1 compile at revision r257865, but compiling
the test z4.f90 still gives an ICE.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70913
--- Comment #3 from Gerhard Steinmetz
---
Another situation :
$ cat z4.f90
program p
character(3) :: a(2) = ['abc', 'xyz']
character(3) :: b(1,2) = ' '
equivalence (b, a)
end
$ gfortran-6 z4.f90
internal compiler error: in gfc_encode_
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70913
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70913
--- Comment #1 from Gerhard Steinmetz
---
For completeness, these variants compile without errors :
$ cat z2.f90
program p
type t
character :: c
end type
type t2
character :: q = transfer(t('a'), 'b')
end type
type(t