Re: [patch] Remove call to tidy_fallthru_edge in tree-inline.c
On Mon, Apr 4, 2011 at 9:12 AM, Eric Botcazou wrote: > Hi, > > tidy_fallthru_edges contains RTL-specific bits: > > if (! (s->flags & EDGE_COMPLEX) > && s->dest == c > && !find_reg_note (BB_END (b), REG_CROSSING_JUMP, NULL_RTX)) > tidy_fallthru_edge (s)
[patch] Remove call to tidy_fallthru_edge in tree-inline.c
Hi, tidy_fallthru_edges contains RTL-specific bits: if (! (s->flags & EDGE_COMPLEX) && s->dest == c && !find_reg_note (BB_END (b), REG_CROSSING_JUMP, NULL_RTX)) tidy_fallthru_edge (s); so it is disabled at the GIMPLE level. That's why I don't th