This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/42891] [4.5 Regression] ice in extract_insn, at recog.c:2097
- From: "jakub at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 28 Jan 2010 08:17:26 -0000
- Subject: [Bug target/42891] [4.5 Regression] ice in extract_insn, at recog.c:2097
- References: <bug-42891-12544@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #2 from jakub at gcc dot gnu dot org 2010-01-28 08:17 -------
Simplified testcase:
union B { int i; float f; };
extern void bar (void);
void
foo (union B x, union B y)
{
if (!(y.f > x.i))
bar ();
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42891