This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/31609] module that calls a contained function with an ENTRY point
- From: "pault at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 9 Jul 2007 04:45:20 -0000
- Subject: [Bug fortran/31609] module that calls a contained function with an ENTRY point
- References: <bug-31609-14284@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #8 from pault at gcc dot gnu dot org 2007-07-09 04:45 -------
This ICEs as well:
MODULE ksbin1_aux_mod
interface foo
module procedure k
end interface
CONTAINS
FUNCTION j ()
j = 1
ENTRY k ()
k = 2
END FUNCTION j
END MODULE ksbin1_aux_mod
I thought that such things had been fixed a while since *sigh*
Paul
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31609