summaryrefslogtreecommitdiffstats
path: root/gcc/bb-reorder.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r--gcc/bb-reorder.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c
index 7572e526fd2..603f921c5e8 100644
--- a/gcc/bb-reorder.c
+++ b/gcc/bb-reorder.c
@@ -1690,10 +1690,8 @@ fix_crossing_conditional_branches (void)
/* Update register liveness information. */
- new_bb->global_live_at_start =
- OBSTACK_ALLOC_REG_SET (&reg_obstack);
- new_bb->global_live_at_end =
- OBSTACK_ALLOC_REG_SET (&reg_obstack);
+ new_bb->global_live_at_start = ALLOC_REG_SET (&reg_obstack);
+ new_bb->global_live_at_end = ALLOC_REG_SET (&reg_obstack);
COPY_REG_SET (new_bb->global_live_at_end,
prev_bb->global_live_at_end);
COPY_REG_SET (new_bb->global_live_at_start,
OpenPOWER on IntegriCloud