aboutsummaryrefslogtreecommitdiff
path: root/gcc/global.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>1999-01-11 14:37:20 -0800
committerRichard Henderson <rth@gcc.gnu.org>1999-01-11 14:37:20 -0800
commit3b413743e0719ecca26e5f5426b6baa837e0a13b (patch)
tree30a7e0f87a7c337abe0059287db7fcfd192c14ae /gcc/global.c
parentf0974237d4c4f761f5073cfd93583a571651ba76 (diff)
downloadgcc-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/global.c')
-rw-r--r--gcc/global.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/global.c b/gcc/global.c
index 063de9a..a3c043b 100644
--- a/gcc/global.c
+++ b/gcc/global.c
@@ -680,7 +680,7 @@ global_conflicts ()
#endif
}
- insn = basic_block_head[b];
+ insn = BLOCK_HEAD (b);
/* Scan the code of this basic block, noting which allocnos
and hard regs are born or die. When one is born,
@@ -777,7 +777,7 @@ global_conflicts ()
mark_reg_death (regs_set[n_regs_set]);
}
- if (insn == basic_block_end[b])
+ if (insn == BLOCK_END (b))
break;
insn = NEXT_INSN (insn);
}
@@ -1667,7 +1667,7 @@ build_insn_chain (first)
{
struct insn_chain *c;
- if (first == basic_block_head[b])
+ if (first == BLOCK_HEAD (b))
{
int i;
CLEAR_REG_SET (live_relevant_regs);
@@ -1727,7 +1727,7 @@ build_insn_chain (first)
}
}
- if (first == basic_block_end[b])
+ if (first == BLOCK_END (b))
b++;
/* Stop after we pass the end of the last basic block. Verify that