This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [tree-ssa] Bootstrap failure on powerpc-apple-darwin
> On Sat, Nov 15, 2003 at 02:21:05AM +0100, Jan Hubicka wrote:
> > > It happens wen the function itself does:
> > > lower_stmt_body (&BIND_EXPR_BODY (stmt), data);
> > > the first stamement of BIND_EXPR_BODY seems to be the BIND_EXPR itself
> > > that looks very wrong, but I can't figure out how it happens.
>
> Correct fix below. Committed. The gimple-low change is the real
> bug fix; the gimplify change is just to avoid being wasteful.
>
>
> > > I am also no longer able to dump the insn chains. How this is done?
>
> define ptu
> if ($arg0 != -1)
> set $NODE=$arg0
> end
> set print_generic_stmt (stderr, $NODE, 1<<5 | 1<<7)
> end
Thanks.
The actual problem was that I was printing stmt that is pointer to tree
and I assumed that it goes wrong because of new chaining code. But the
macro is good idea. I was getting tired of typing debug_generic_stmt...
Honza