This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c/34668] [4.3 Regression] ICE in find_compatible_field with -combine



------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]