This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/42760] [4.4 Regression] ICE in convert_move
- From: "rguenth at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 15 Jan 2010 16:23:56 -0000
- Subject: [Bug middle-end/42760] [4.4 Regression] ICE in convert_move
- References: <bug-42760-87@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from rguenth at gcc dot gnu dot org 2010-01-15 16:23 -------
Trunk has
if (COMPLEX_MODE_P (TYPE_MODE (TREE_TYPE (from))))
instead of the 4.4
if (TREE_CODE (TREE_TYPE (from)) == COMPLEX_TYPE)
Fixed by
2009-06-17 Steve Ellcey <sje@cup.hp.com>
* expr.c (expand_assignment): Change complex type check.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42760