]> gcc.gnu.org Git - gcc.git/commitdiff
flow.c (redirect_edge_and_branch_force): Test target->global_live_at_start.
authorJohn Wehle <john@feith.com>
Fri, 27 Jul 2001 04:35:18 +0000 (04:35 +0000)
committerJohn Wehle <wehle@gcc.gnu.org>
Fri, 27 Jul 2001 04:35:18 +0000 (04:35 +0000)
        * flow.c (redirect_edge_and_branch_force): Test
target->global_live_at_start.

From-SVN: r44412

gcc/ChangeLog
gcc/flow.c

index 08f8c66de13c977ac1f8ce7bb64d4de232f5a6fa..4a7a5ea15922944236018ca00fe5f0942e011e84 100644 (file)
@@ -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>
 
        * simplify-rtx.c (avoid_constant_pool_reference): Export.
index 248d4296fb4afa5329376f832858cb24bee6550e..a4b2ae1a864c51032a1343be0ad90c2aac305990 100644 (file)
@@ -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);
This page took 0.071656 seconds and 5 git commands to generate.