This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/34668] [4.3 Regression] ICE in find_compatible_field with -combine
- From: "aldot 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 Jan 2008 13:52:22 -0000
- Subject: [Bug c/34668] [4.3 Regression] ICE in find_compatible_field with -combine
- References: <bug-34668-11811@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #6 from aldot at gcc dot gnu dot org 2008-01-04 13:52 -------
Smaller testcase:
cat > arm.i <<-EOF
struct optab { unsigned code; };
extern struct optab optab_table[1];
EOF
cat > optabs.i <<-EOF
struct optab { unsigned code; };
extern struct optab optab_table[1];
void
init_optab (struct optab *op)
{
op->code = 0xdead;
}
void
set_conv_libfunc (void)
{
init_optab ((&optab_table[0]));
}
EOF
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34668