This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/20244] internal compiler error: in fold_convert, at fold-const.c:2003
- From: "anglade at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 4 Nov 2005 15:31:58 -0000
- Subject: [Bug fortran/20244] internal compiler error: in fold_convert, at fold-const.c:2003
- References: <bug-20244-10180@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #7 from anglade at gmail dot com 2005-11-04 15:31 -------
I've simplified to it's (almost) simplest expression the test case:
module mtyp
type t1
integer::a
end type t1
end module mtyp
module atest
use mtyp
type(t1)::ze
contains
subroutine test(ze_in )
use mtyp
implicit none
type(t1)::ze_in
ze=ze_in
end subroutine test
end module atest
I've try to backtrace the call up to the front-end. But I'm not able to do that
since I really don't know the structure of gcc (and since ddd/gdb keeps busying
me with stupid error message).
I'd be glade to fix the bug if someone can introduce me a little bit more to
the code. (any link for gcc beginners??)
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20244