[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-11 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 Thomas Koenig changed: What|Removed |Added CC||tkoenig at gcc dot gnu.org --- Comment #

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-11 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 Thomas Koenig changed: What|Removed |Added Status|NEW |ASSIGNED Assignee|unassigned a

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-17 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 --- Comment #6 from Thomas Koenig --- Author: tkoenig Date: Sat Dec 17 11:13:16 2016 New Revision: 243773 URL: https://gcc.gnu.org/viewcvs?rev=243773&root=gcc&view=rev Log: 2016-12-17 Thomas Koenig PR fortran/78239 * decl.c(c

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-17 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 --- Comment #7 from Dominique d'Humieres --- > Author: tkoenig > Date: Sat Dec 17 11:13:16 2016 > New Revision: 243773 > > URL: https://gcc.gnu.org/viewcvs?rev=243773&root=gcc&view=rev > ... The two tests give an ICE: see https://gcc.gnu.org/ml/

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-17 Thread janus at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 janus at gcc dot gnu.org changed: What|Removed |Added CC||janus at gcc dot gnu.org --- C

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-17 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 --- Comment #9 from Thomas Koenig --- Author: tkoenig Date: Sat Dec 17 17:03:49 2016 New Revision: 243776 URL: https://gcc.gnu.org/viewcvs?rev=243776&root=gcc&view=rev Log: 2016-12-17 Thomas Koenig PR fortran/78239 * decl.c (

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-17 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 --- Comment #10 from Thomas Koenig --- It helps to actually commit the fix, not only the test case and the ChangeLog entry :-)

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-22 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 --- Comment #11 from Thomas Koenig --- Author: tkoenig Date: Thu Dec 22 17:05:13 2016 New Revision: 243891 URL: https://gcc.gnu.org/viewcvs?rev=243891&root=gcc&view=rev Log: 2016-12-22 Thomas Koenig Backport from trunk PR for

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-22 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 --- Comment #12 from Thomas Koenig --- Author: tkoenig Date: Thu Dec 22 20:27:52 2016 New Revision: 243895 URL: https://gcc.gnu.org/viewcvs?rev=243895&root=gcc&view=rev Log: 2016-12-22 Thomas Koenig Backport from trunk PR for

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-12-22 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 Thomas Koenig changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-11-07 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 Dominique d'Humieres changed: What|Removed |Added Priority|P3 |P4 Status|UNCONFIRMED

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-11-08 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 Richard Biener changed: What|Removed |Added Target Milestone|--- |5.5

[Bug fortran/78239] [5/6/7 Regression] ICE in char_len_param_value, at fortran/decl.c:926, with -fimplicit-none

2016-11-08 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78239 --- Comment #3 from Gerhard Steinmetz --- Adding an explicit declaration of "n" to snippet from comment 0 : $ cat zz1.f90 subroutine s(n) integer :: n character(n) :: c c = 'c' print *, len(c), ' >>' // c // '<<' end program p c