diff options
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 127023d..ea97f33 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -966,7 +966,8 @@ update_equiv_regs () BLOCK_HEAD (block) = PREV_INSN (insn); for (l = 0; l < n_basic_blocks; l++) - CLEAR_REGNO_REG_SET (basic_block_live_at_start[l], regno); + CLEAR_REGNO_REG_SET (BASIC_BLOCK (l)->global_live_at_start, + regno); } } } @@ -1039,7 +1040,7 @@ block_alloc (b) /* Initialize table of hardware registers currently live. */ - REG_SET_TO_HARD_REG_SET (regs_live, basic_block_live_at_start[b]); + REG_SET_TO_HARD_REG_SET (regs_live, BASIC_BLOCK (b)->global_live_at_start); /* This loop scans the instructions of the basic block and assigns quantities to registers. |