diff options
author | Richard Henderson <rth@cygnus.com> | 1999-01-11 14:37:20 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-01-11 14:37:20 -0800 |
commit | 3b413743e0719ecca26e5f5426b6baa837e0a13b (patch) | |
tree | 30a7e0f87a7c337abe0059287db7fcfd192c14ae /gcc/reload1.c | |
parent | f0974237d4c4f761f5073cfd93583a571651ba76 (diff) | |
download | gcc-3b413743e0719ecca26e5f5426b6baa837e0a13b.zip gcc-3b413743e0719ecca26e5f5426b6baa837e0a13b.tar.gz gcc-3b413743e0719ecca26e5f5426b6baa837e0a13b.tar.bz2 |
basic-block.h (basic_block_head): Rename to x_basic_block_head.
* basic-block.h (basic_block_head): Rename to x_basic_block_head.
(basic_block_end): Rename to x_basic_block_end.
(BLOCK_HEAD, BLOCK_END): Update.
* caller-save.c: Change basic_block_head/end references to
BLOCK_HEAD/END.
* combine.c, flow.c, function.c, gcse.c, global.c: Likewise.
* graph.c, haifa-sched.c, local-alloc.c, regclass.c: Likewise.
* regmove.c, reload1.c, reorg.c, sched.c: Likewise.
From-SVN: r24622
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 3e5f898..fbb506cb 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -2039,10 +2039,10 @@ delete_caller_save_insns () struct insn_chain *next = c->next; rtx insn = c->insn; - if (insn == basic_block_head[c->block]) - basic_block_head[c->block] = NEXT_INSN (insn); - if (insn == basic_block_end[c->block]) - basic_block_end[c->block] = PREV_INSN (insn); + if (insn == BLOCK_HEAD (c->block)) + BLOCK_HEAD (c->block) = NEXT_INSN (insn); + if (insn == BLOCK_END (c->block)) + BLOCK_END (c->block) = PREV_INSN (insn); if (c == reload_insn_chain) reload_insn_chain = next; @@ -7308,10 +7308,10 @@ emit_reload_insns (chain) /* Keep basic block info up to date. */ if (n_basic_blocks) { - if (basic_block_head[chain->block] == insn) - basic_block_head[chain->block] = NEXT_INSN (before_insn); - if (basic_block_end[chain->block] == insn) - basic_block_end[chain->block] = PREV_INSN (following_insn); + if (BLOCK_HEAD (chain->block) == insn) + BLOCK_HEAD (chain->block) = NEXT_INSN (before_insn); + if (BLOCK_END (chain->block) == insn) + BLOCK_END (chain->block) = PREV_INSN (following_insn); } /* For all the spill regs newly reloaded in this instruction, @@ -9464,7 +9464,7 @@ reload_combine () CLEAR_HARD_REG_SET (ever_live_at_start); for (i = n_basic_blocks - 1; i >= 0; i--) { - insn = basic_block_head[i]; + insn = BLOCK_HEAD (i); if (GET_CODE (insn) == CODE_LABEL) { HARD_REG_SET live; |