This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/18082] Infinite loop with automatic length character objects
- From: "fxcoudert at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 3 Jun 2005 14:36:53 -0000
- Subject: [Bug fortran/18082] Infinite loop with automatic length character objects
- References: <20041020154900.18082.schnetter@aei.mpg.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-06-03 14:36 -------
I encountered this same problem today, directly with an integer as parameter for
the subroutine:
subroutine FOO(N)
integer, intent(IN) :: N
character(len=N) :: C1, C2
C1 = ''
C2 = ''
end subroutine
--
What |Removed |Added
----------------------------------------------------------------------------
Last reconfirmed|2005-02-26 18:42:47 |2005-06-03 14:36:53
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18082