This is the mail archive of the gcc@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]

[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


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