This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
[tree-ssa] Bootstrap failure on powerpc-apple-darwin
- From: Andrew Pinski <pinskia at physics dot uc dot edu>
- To: gcc list <gcc at gcc dot gnu dot org>
- Cc: Andrew Pinski <pinskia at physics dot uc dot edu>
- Date: Thu, 13 Nov 2003 23:00:48 -0800
- Subject: [tree-ssa] Bootstrap failure on powerpc-apple-darwin
The tree-ssa branch has a bootstrap failure on
powerpc-apple-darwin7.0.0.
The compiler goes into an infinite loop in decl_function_context with
the following reduced source code:
extern void gen_movstrsi_8reg (void);
int expand_block_move (int i)
{
int bytes;
{
union {
void (*movstrsi) (void);
} gen_func;
gen_func.movstrsi = gen_movstrsi_8reg;
(*gen_func.movstrsi) ();
}
return 1;
}
Thanks,
Andrew Pinski