aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-04-09 20:15:39 +0000
committerJeff Law <law@gcc.gnu.org>1999-04-09 14:15:39 -0600
commit4f282ba1e944d627a8ea491d7970969d3bed997a (patch)
treed89765b479fb5cec7f1593037c3d72979dc1d13a /gcc/flow.c
parent5e4df1ae8bbcf947c92b03f92cf0bcde335a0844 (diff)
downloadgcc-4f282ba1e944d627a8ea491d7970969d3bed997a.zip
gcc-4f282ba1e944d627a8ea491d7970969d3bed997a.tar.gz
gcc-4f282ba1e944d627a8ea491d7970969d3bed997a.tar.bz2
Fix comments/ChangeLog entry for last night's change.
From-SVN: r26320
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index daf3571..64350b0 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -1563,10 +1563,9 @@ delete_unreachable_blocks ()
out edge for the block which ended with the conditional
branch (since we do not create duplicate edges).
- Furthermore, because we create the edge for the jump to the
- label before the fallthrough edge, we will only see the
- jump edge. So we do not want to check that the edge is a
- FALLTHRU edge. */
+ Furthermore, the edge will be marked as a fallthru because we
+ merge the flags for the duplicate edges. So we do not want to
+ check that the edge is not a FALLTHRU edge. */
if ((s = b->succ) != NULL
&& s->succ_next == NULL
&& s->dest == c)