* cfghooks.c (tidy_fallthru_edges): Add ??? comment.
* tree-inline.c (delete_unreachable_blocks_update_callgraph): Remove
call to tidy_fallthru_edges.
From-SVN: r171936
+2011-04-04 Eric Botcazou <ebotcazou@adacore.com>
+
+ * cfghooks.c (tidy_fallthru_edges): Add ??? comment.
+ * tree-inline.c (delete_unreachable_blocks_update_callgraph): Remove
+ call to tidy_fallthru_edges.
+
2011-04-04 Joseph Myers <joseph@codesourcery.com>
* doc/options.texi (ToLower): Document.
/* Fix up edges that now fall through, or rather should now fall through
but previously required a jump around now deleted blocks. Simplify
the search by only examining blocks numerically adjacent, since this
- is how they were created. */
+ is how they were created.
+
+ ??? This routine is currently RTL specific. */
void
tidy_fallthru_edges (void)
}
}
- if (changed)
- tidy_fallthru_edges ();
return changed;
}