This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/27889] ICE on complex assignment
- 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: 4 Jun 2006 11:49:56 -0000
- Subject: [Bug fortran/27889] ICE on complex assignment
- References: <bug-27889-10979@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #2 from fxcoudert at gcc dot gnu dot org 2006-06-04 11:49 -------
I now also have a slightly different testcase that fails on 4.1.1 and current
4.1 branch, on i686-linux, at optimization levels -O1 or higher:
MODULE constraints_module
REAL target
CONTAINS
SUBROUTINE init_constraint
COMPLEX struc_fac
CALL set_structure_factor
RETURN
CONTAINS
SUBROUTINE set_structure_factor
target = CONJG( struc_fac ) * struc_fac
END SUBROUTINE set_structure_factor
END SUBROUTINE init_constraint
END MODULE constraints_module
Paul, I'm adding you to the CC list since this looks fully module-related.
--
fxcoudert at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|stevenb dot gcc at gmail dot|paul dot richard dot thomas
|com |at cea dot fr
Component|middle-end |fortran
Last reconfirmed|2006-06-04 11:24:33 |2006-06-04 11:49:55
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27889