mirror of git://gcc.gnu.org/git/gcc.git
flow.c (redirect_edge_and_branch_force): Test target->global_live_at_start.
* flow.c (redirect_edge_and_branch_force): Test target->global_live_at_start. From-SVN: r44412
This commit is contained in:
parent
732910b9c5
commit
a727094f58
|
@ -1,3 +1,8 @@
|
||||||
|
Fri Jul 27 00:33:35 EDT 2001 John Wehle (john@feith.com)
|
||||||
|
|
||||||
|
* flow.c (redirect_edge_and_branch_force): Test
|
||||||
|
target->global_live_at_start.
|
||||||
|
|
||||||
2001-07-26 Richard Henderson <rth@redhat.com>
|
2001-07-26 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
* simplify-rtx.c (avoid_constant_pool_reference): Export.
|
* simplify-rtx.c (avoid_constant_pool_reference): Export.
|
||||||
|
|
|
@ -1917,7 +1917,7 @@ redirect_edge_and_branch_force (e, target)
|
||||||
new_edge->probability = e->probability;
|
new_edge->probability = e->probability;
|
||||||
new_edge->count = e->count;
|
new_edge->count = e->count;
|
||||||
|
|
||||||
if (e->dest->global_live_at_start)
|
if (target->global_live_at_start)
|
||||||
{
|
{
|
||||||
new_bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
|
new_bb->global_live_at_start = OBSTACK_ALLOC_REG_SET (&flow_obstack);
|
||||||
new_bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
|
new_bb->global_live_at_end = OBSTACK_ALLOC_REG_SET (&flow_obstack);
|
||||||
|
|
Loading…
Reference in New Issue