Correct branch/fallthru edge detection

From-SVN: r43902
This commit is contained in:
Bernd Schmidt 2001-07-10 14:57:13 +00:00 committed by Bernd Schmidt
parent a4d81081ae
commit fd052ec378
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-07-10 Bernd Schmidt <bernds@redhat.com>
* bb-reorder.c (make_reorder_chain_1): Correct branch/fallthru
edge detection.
Tue Jul 10 07:27:53 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Tue Jul 10 07:27:53 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (expand_expr, case COMPONENT_REF): Don't force using bitfield * expr.c (expand_expr, case COMPONENT_REF): Don't force using bitfield

View File

@ -409,7 +409,7 @@ make_reorder_chain_1 (bb, prev)
{ {
if (e->flags & EDGE_FALLTHRU) if (e->flags & EDGE_FALLTHRU)
e_fall = e; e_fall = e;
if (! (e->flags & EDGE_EH)) else if (! (e->flags & EDGE_EH))
e_taken = e; e_taken = e;
} }