aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgrtl.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-03-09 07:05:34 +0000
committerKazu Hirata <kazu@cs.umass.edu>2005-03-09 07:05:34 +0000
commit02dd19b35b07f5df679b53cea5ac3f5edf16a470 (patch)
tree81f14ffdfef784ffece33c61582cae45a688fcc7 /gcc/cfgrtl.c
parent8df3671c19ad9faa8bed32a117097d41e17a1d97 (diff)
* cfgrtl.c (cfg_layout_merge_blocks): Remove new_e.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@96163 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r--gcc/cfgrtl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c
index 397fc132f26..8190d4fc21b 100644
--- a/gcc/cfgrtl.c
+++ b/gcc/cfgrtl.c
@@ -2823,7 +2823,6 @@ cfg_layout_merge_blocks (basic_block a, basic_block b)
static basic_block
cfg_layout_split_edge (edge e)
{
- edge new_e;
basic_block new_bb =
create_basic_block (e->src != ENTRY_BLOCK_PTR
? NEXT_INSN (BB_END (e->src)) : get_insns (),
@@ -2841,7 +2840,7 @@ cfg_layout_split_edge (edge e)
e->dest->global_live_at_start);
}
- new_e = make_edge (new_bb, e->dest, EDGE_FALLTHRU);
+ make_edge (new_bb, e->dest, EDGE_FALLTHRU);
redirect_edge_and_branch_force (e, new_bb);
return new_bb;