[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2018-03-03 Thread pault at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 Paul Thomas changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2018-02-21 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 --- Comment #12 from Dominique d'Humieres --- Fixed?

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2018-02-19 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 --- Comment #11 from Thomas Koenig --- Author: tkoenig Date: Mon Feb 19 18:21:45 2018 New Revision: 257814 URL: https://gcc.gnu.org/viewcvs?rev=257814=gcc=rev Log: 2018-02-19 Thomas Koenig PR fortran/35339

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2018-02-18 Thread pault at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 --- Comment #10 from Paul Thomas --- Author: pault Date: Sun Feb 18 08:59:06 2018 New Revision: 257788 URL: https://gcc.gnu.org/viewcvs?rev=257788=gcc=rev Log: 2018-02-18 Paul Thomas PR fortran/80945 *

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2018-02-15 Thread pault at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 Paul Thomas changed: What|Removed |Added Assignee|unassigned at gcc dot gnu.org |pault at gcc dot gnu.org ---

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2018-02-14 Thread paul.richard.thomas at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 --- Comment #8 from paul.richard.thomas at gmail dot com --- Hi Thomas, It doesn't just ring bells, it lets off sirens and sets the marching bands to marching! I can only find rather old sources on the web but I seem to remember that the new

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2018-02-13 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 --- Comment #7 from Thomas Koenig --- Still fails with current trunk. Code from comment#1, somewhat simplified: program main implicit none integer:: i integer, parameter:: N = 10 character(len=:), dimension(:),allocatable:: ca

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2017-06-05 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 --- Comment #6 from Thomas Koenig --- If this patch is fixed, please remember to remove the extra check in frontend-passes.c (traverse_io_block). Just grep for 80945.

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2017-06-03 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 Dominique d'Humieres changed: What|Removed |Added CC||pault at gcc dot gnu.org

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2017-06-02 Thread jvdelisle at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 Jerry DeLisle changed: What|Removed |Added CC||jvdelisle at gcc dot gnu.org ---

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2017-06-01 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 --- Comment #3 from Thomas Koenig --- Really strange - the tree dumps look OK at first glance. D.3543 = (sizetype) NON_LVALUE_EXPR <.ca>; and later on parm.3.dtype = ((integer(kind=8)) SAVE_EXPR << 6) + 49;

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2017-06-01 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 Thomas Koenig changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/80945] Invalid code with allocatable character array in READ/WRITE statement

2017-06-01 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80945 --- Comment #1 from Thomas Koenig --- 1. write also fails (no surprise there) 2. ca is OK, ca(1:3) is not. $ cat u.f90 program main implicit none integer:: i integer, parameter:: N = 10 character(len=:),