diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/flow.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 14fe09e..91fd004 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +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; |