This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/32088] ICE (doesn't occur if given function standalone instead on internal)
- From: "jvdelisle at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 May 2007 23:36:29 -0000
- Subject: [Bug fortran/32088] ICE (doesn't occur if given function standalone instead on internal)
- References: <bug-32088-14607@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from jvdelisle at gcc dot gnu dot org 2007-05-25 23:36 -------
Further reduced case:
subroutine dummy
contains
function quadric(a,b) result(c)
dimension a(0:3),b(0:3),c(0:9)
c(0)=1.1
end function
end
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32088