This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/49278] internal compiler error: Segmentation fault
- From: "kargl at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 3 Jun 2011 16:07:50 +0000
- Subject: [Bug fortran/49278] internal compiler error: Segmentation fault
- Auto-submitted: auto-generated
- References: <bug-49278-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49278
kargl at gcc dot gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |kargl at gcc dot gnu.org
Known to fail| |4.3.6, 4.4.7, 4.5.3, 4.6.1,
| |4.7.0
--- Comment #1 from kargl at gcc dot gnu.org 2011-06-03 16:07:45 UTC ---
Reduced testcase.
module oad_active
implicit none
type active
sequence
real :: v
real :: d =0.
end type
end module
module tots_c
use oad_active
implicit none
type(active), save :: trlkold
data trlkold%v /0./
end module