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/reorg.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/reorg.c')
-rw-r--r-- | gcc/reorg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/reorg.c b/gcc/reorg.c index 375d4f8..d0abf37 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -2349,7 +2349,7 @@ find_basic_block (insn) insn = next_nonnote_insn (insn)) { for (i = 0; i < n_basic_blocks; i++) - if (insn == basic_block_head[i]) + if (insn == BLOCK_HEAD (i)) return i; } @@ -2818,7 +2818,7 @@ mark_target_live_regs (target, res) we can get it from there unless the insn at the start of the basic block has been deleted. */ if (tinfo && tinfo->block != -1 - && ! INSN_DELETED_P (basic_block_head[tinfo->block])) + && ! INSN_DELETED_P (BLOCK_HEAD (tinfo->block))) b = tinfo->block; if (b == -1) @@ -2876,7 +2876,7 @@ mark_target_live_regs (target, res) /* Get starting and ending insn, handling the case where each might be a SEQUENCE. */ - start_insn = (b == 0 ? get_insns () : basic_block_head[b]); + start_insn = (b == 0 ? get_insns () : BLOCK_HEAD (b)); stop_insn = target; if (GET_CODE (start_insn) == INSN |