[Bug fortran/22273] problem to declare a character variable link to an intent(out) object

2005-10-17 Thread tobi at gcc dot gnu dot org
--- Comment #6 from tobi at gcc dot gnu dot org 2005-10-17 11:29 --- Subject: Bug 22273 Author: tobi Date: Mon Oct 17 11:29:33 2005 New Revision: 105364 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=105364 Log: 2005-10-17 Erik Edelmann [EMAIL PROTECTED] fortran/ PR

[Bug fortran/22273] problem to declare a character variable link to an intent(out) object

2005-10-17 Thread tobi at gcc dot gnu dot org
--- Comment #6 from tobi at gcc dot gnu dot org 2005-10-17 11:29 --- Subject: Bug 22273 Author: tobi Date: Mon Oct 17 11:29:33 2005 New Revision: 105364 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=105364 Log: 2005-10-17 Erik Edelmann [EMAIL PROTECTED] fortran/ PR

[Bug fortran/22273] problem to declare a character variable link to an intent(out) object

2005-10-16 Thread cvs-commit at gcc dot gnu dot org
--- Comment #3 from cvs-commit at gcc dot gnu dot org 2005-10-16 13:59 --- Subject: Bug 22273 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED]2005-10-16 13:59:36 Modified files: gcc/fortran: ChangeLog expr.c gcc/testsuite :

[Bug fortran/22273] problem to declare a character variable link to an intent(out) object

2005-10-16 Thread cvs-commit at gcc dot gnu dot org
--- Comment #4 from cvs-commit at gcc dot gnu dot org 2005-10-16 14:10 --- Subject: Bug 22273 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED]2005-10-16 14:10:13 Modified files: gcc/fortran: ChangeLog

[Bug fortran/22273] problem to declare a character variable link to an intent(out) object

2005-10-16 Thread tobi at gcc dot gnu dot org
--- Comment #5 from tobi at gcc dot gnu dot org 2005-10-16 14:11 --- Fixed by Erik's patch. -- tobi at gcc dot gnu dot org changed: What|Removed |Added

[Bug fortran/22273] problem to declare a character variable link to an intent(out) object

2005-10-13 Thread erik dot edelmann at iki dot fi
--- Comment #2 from erik dot edelmann at iki dot fi 2005-10-13 14:49 --- Patch posted here: http://gcc.gnu.org/ml/fortran/2005-10/msg00292.html -- erik dot edelmann at iki dot fi changed: What|Removed |Added

[Bug fortran/22273] problem to declare a character variable link to an intent(out) object

2005-07-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-01 20:51 --- Confirmed, reduced testcase: subroutine lecligne (ligne) character(len=*), dimension(:),intent(out) :: ligne character(len=len(ligne)) :: comment end subroutine lecligne -- What