This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/25905] [4.2 regression] ICE in expand_compound_operation
- From: "bonzini at gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 23 Jan 2006 08:22:49 -0000
- Subject: [Bug middle-end/25905] [4.2 regression] ICE in expand_compound_operation
- References: <bug-25905-50@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #5 from bonzini at gnu dot org 2006-01-23 08:22 -------
I cannot reproduce Paul's testcase, but I found this one:
struct object
{
unsigned long mixed_encoding:1;
unsigned long encoding:8;
}
__attribute__ ((packed));
int search_object (struct object *ob)
{
return ob->encoding == 0x00;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25905