diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-11 22:37:20 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-11 22:37:20 +0000 |
commit | 68676d00311605a8ea7d8b5698e3508465a8fbdb (patch) | |
tree | 30a7e0f87a7c337abe0059287db7fcfd192c14ae /gcc/reorg.c | |
parent | 0a244baed44e7f9aa9464b1485e529b9452587bc (diff) | |
download | ppe42-gcc-68676d00311605a8ea7d8b5698e3508465a8fbdb.tar.gz ppe42-gcc-68676d00311605a8ea7d8b5698e3508465a8fbdb.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24622 138bc75d-0d04-0410-961f-82ee72b054a4
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 375d4f87213..d0abf37f2c9 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 |