Commit fd052ec3 by Bernd Schmidt Committed by Bernd Schmidt

Correct branch/fallthru edge detection

From-SVN: r43902
parent a4d81081
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>
* expr.c (expand_expr, case COMPONENT_REF): Don't force using bitfield
......
......@@ -409,7 +409,7 @@ make_reorder_chain_1 (bb, prev)
{
if (e->flags & EDGE_FALLTHRU)
e_fall = e;
if (! (e->flags & EDGE_EH))
else if (! (e->flags & EDGE_EH))
e_taken = e;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment