Commit faf041ed by Richard Kenner Committed by Richard Kenner

* flow.c (try_simplify_condjump): Fix typo in updating fallthru flags.

From-SVN: r43695
parent 213ba345
Mon Jul 2 12:50:51 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* flow.c (try_simplify_condjump): Fix typo in updating fallthru flags.
2001-07-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* doc/install.texi (Specific, mips*-sgi-irix4): Split from IRIX 5
......
......@@ -2888,7 +2888,7 @@ try_simplify_condjump (src)
redirect_edge_succ (fallthru, next_block->succ->dest);
branch->flags |= EDGE_FALLTHRU;
fallthru->flags &= EDGE_FALLTHRU;
fallthru->flags &= ~EDGE_FALLTHRU;
flow_delete_block (next_block);
return true;
......
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