[Bug fortran/35723] Can't use run-time array element in character declaration

2008-10-09 Thread domob at gcc dot gnu dot org
--- Comment #4 from domob at gcc dot gnu dot org 2008-10-09 07:33 --- Fixed. -- domob at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug fortran/35723] Can't use run-time array element in character declaration

2008-10-09 Thread domob at gcc dot gnu dot org
--- Comment #3 from domob at gcc dot gnu dot org 2008-10-09 07:29 --- Subject: Bug 35723 Author: domob Date: Thu Oct 9 07:28:22 2008 New Revision: 141001 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=141001 Log: 2008-10-09 Daniel Kraft <[EMAIL PROTECTED]> PR fortran

[Bug fortran/35723] Can't use run-time array element in character declaration

2008-09-25 Thread domob at gcc dot gnu dot org
--- Comment #2 from domob at gcc dot gnu dot org 2008-09-25 10:28 --- I guess this is illegal, too: PROGRAM main IMPLICIT NONE CALL test (5, (/ 1, 2, 3, 4, 5, 6, 7, 8, 9 /) ) CONTAINS SUBROUTINE test (n, arr) IMPLICIT NONE INTEGER :: n, arr(:) INTEGER :: i = 5 I

[Bug fortran/35723] Can't use run-time array element in character declaration

2008-09-24 Thread domob at gcc dot gnu dot org
-- domob at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |domob at gcc dot gnu dot org |dot org

[Bug fortran/35723] Can't use run-time array element in character declaration

2008-03-28 Thread burnus at gcc dot gnu dot org
--- Comment #1 from burnus at gcc dot gnu dot org 2008-03-28 19:40 --- Confirmed. A simple patch would be the following: Index: expr.c === --- expr.c (Revision 133693) +++ expr.c (Arbeitskopie) @@ -2502,6 +2502,7