aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@gcc.gnu.org>2001-08-27 18:32:10 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-08-27 18:32:10 -0700
commitc23bb84bd333c756c82c53c076befae20804b6cb (patch)
treeaa4a146075ee60eeed30ad01f50c72a006080fae /gcc/flow.c
parentb5a696fb77de13c828495626919dcd1f5507fddc (diff)
downloadgcc-c23bb84bd333c756c82c53c076befae20804b6cb.zip
gcc-c23bb84bd333c756c82c53c076befae20804b6cb.tar.gz
gcc-c23bb84bd333c756c82c53c076befae20804b6cb.tar.bz2
flow.c (redirect_edge_succ_nodup): Return new edge.
* flow.c (redirect_edge_succ_nodup): Return new edge. (try_simplify_condjump): Use new edge. * basic-block.h (redirect_edge_succ_nodup): Update prototype. From-SVN: r45222
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index f1e7a6c..d2f37e5 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -3335,8 +3335,10 @@ try_simplify_condjump (cbranch_block)
/* Success. Update the CFG to match. Note that after this point
the edge variable names appear backwards; the redirection is done
this way to preserve edge profile data. */
- redirect_edge_succ_nodup (cbranch_jump_edge, cbranch_dest_block);
- redirect_edge_succ_nodup (cbranch_fallthru_edge, jump_dest_block);
+ cbranch_jump_edge = redirect_edge_succ_nodup (cbranch_jump_edge,
+ cbranch_dest_block);
+ cbranch_fallthru_edge = redirect_edge_succ_nodup (cbranch_fallthru_edge,
+ jump_dest_block);
cbranch_jump_edge->flags |= EDGE_FALLTHRU;
cbranch_fallthru_edge->flags &= ~EDGE_FALLTHRU;
@@ -9029,7 +9031,7 @@ redirect_edge_succ (e, new_succ)
/* Like previous but avoid possible dupplicate edge. */
-void
+edge
redirect_edge_succ_nodup (e, new_succ)
edge e;
basic_block new_succ;
@@ -9045,9 +9047,11 @@ redirect_edge_succ_nodup (e, new_succ)
s->probability += e->probability;
s->count += e->count;
remove_edge (e);
+ e = s;
}
else
redirect_edge_succ (e, new_succ);
+ return e;
}
/* Redirect an edge's predecessor from one block to another. */