summaryrefslogtreecommitdiffstats
path: root/gcc/cfglayout.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cfglayout.c')
-rw-r--r--gcc/cfglayout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfglayout.c b/gcc/cfglayout.c
index 287a139fda9..f680eee8794 100644
--- a/gcc/cfglayout.c
+++ b/gcc/cfglayout.c
@@ -1116,8 +1116,8 @@ cfg_layout_duplicate_bb (basic_block bb)
if (bb->global_live_at_start)
{
- 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_start, bb->global_live_at_start);
COPY_REG_SET (new_bb->global_live_at_end, bb->global_live_at_end);
}
OpenPOWER on IntegriCloud