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]

Re: [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;
> }

This is probably caught by my verify_flow_info change.  I think the
FUNCTION_CONTEXT must be wrong.  Will look into this at afternoon.

Honza
> 
> Thanks,
> Andrew Pinski


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