[Bug fortran/69867] ICE on initializing character in type with array of incompatible data

2016-09-30 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69867 --- Comment #8 from kargl at gcc dot gnu.org --- Author: kargl Date: Fri Sep 30 21:02:56 2016 New Revision: 240679 URL: https://gcc.gnu.org/viewcvs?rev=240679&root=gcc&view=rev Log: 2016-09-30 Steven G. Kargl Backport from trunk

[Bug fortran/69867] ICE on initializing character in type with array of incompatible data

2016-07-30 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69867 kargl at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--

[Bug fortran/69867] ICE on initializing character in type with array of incompatible data

2016-07-30 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69867 --- Comment #6 from kargl at gcc dot gnu.org --- Author: kargl Date: Sat Jul 30 20:05:10 2016 New Revision: 238907 URL: https://gcc.gnu.org/viewcvs?rev=238907&root=gcc&view=rev Log: 2016-07-30 Steven G. Kargl PR fortran/69867

[Bug fortran/69867] ICE on initializing character in type with array of incompatible data

2016-07-02 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69867 --- Comment #5 from kargl at gcc dot gnu.org --- Index: decl.c === --- decl.c (revision 237945) +++ decl.c (working copy) @@ -1912,8 +1916,10 @@ build_struct (const char *na

[Bug fortran/69867] ICE on initializing character in type with array of incompatible data

2016-02-18 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69867 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/69867] ICE on initializing character in type with array of incompatible data

2016-02-18 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69867 --- Comment #2 from Gerhard Steinmetz --- One exception from comment 1 : $ cat z7.f90 program p type t character(1) :: b = null() character(1) :: c(1) = null() end type end $ gfortran-6 z7.f90 f951: internal compiler error: S

[Bug fortran/69867] ICE on initializing character in type with array of incompatible data

2016-02-18 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69867 --- Comment #3 from Gerhard Steinmetz --- These issues are thematically related to pr67804 (... more or less).

[Bug fortran/69867] ICE on initializing character in type with array of incompatible data

2016-02-18 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69867 --- Comment #1 from Gerhard Steinmetz --- Detected when lhs is a scalar : $ cat z4.f90 program p type t character(1) :: c(1) = 1 end type end $ gfortran-6 z4.f90 z4.f90:3:28: character(1) :: c(1) = 1