This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/33881] [4.3 Regression] incorrect code for optional assumed length character arrays ?
- 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: 26 Oct 2007 22:40:08 -0000
- Subject: [Bug fortran/33881] [4.3 Regression] incorrect code for optional assumed length character arrays ?
- References: <bug-33881-11265@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #9 from fxcoudert at gcc dot gnu dot org 2007-10-26 22:40 -------
And the smaller testcase with invalid dump:
subroutine create_watch_ss (name,l)
character(len=*) :: name
logical l
if (l) then
call create_watch_actual([name])
else
call create_watch_actual([name])
end if
end
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33881