diff options
author | wehle <wehle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-27 04:35:18 +0000 |
---|---|---|
committer | wehle <wehle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-27 04:35:18 +0000 |
commit | 87af50587f530c0d657b6883c2300d0511744454 (patch) | |
tree | 8ba17079715b2170eac4ec2afc3bb99c92e1664d /gcc/flow.c | |
parent | c0876b6ca704a8d0d63b3fcc75066e8469115502 (diff) | |
download | gcc-87af50587f530c0d657b6883c2300d0511744454.tar.gz |
* flow.c (redirect_edge_and_branch_force): Test
target->global_live_at_start.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44412 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/flow.c b/gcc/flow.c index 248d4296fb4..a4b2ae1a864 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -1917,7 +1917,7 @@ redirect_edge_and_branch_force (e, target) new_edge->probability = e->probability; 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_end = OBSTACK_ALLOC_REG_SET (&flow_obstack); |