diff options
Diffstat (limited to 'gcc/bb-reorder.c')
| -rw-r--r-- | gcc/bb-reorder.c | 6 |
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 (®_obstack); - new_bb->global_live_at_end = - OBSTACK_ALLOC_REG_SET (®_obstack); + new_bb->global_live_at_start = ALLOC_REG_SET (®_obstack); + new_bb->global_live_at_end = ALLOC_REG_SET (®_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, |

