summaryrefslogtreecommitdiff
path: root/gcc/basic-block.h
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>1999-01-11 22:37:20 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>1999-01-11 22:37:20 +0000
commit68676d00311605a8ea7d8b5698e3508465a8fbdb (patch)
tree30a7e0f87a7c337abe0059287db7fcfd192c14ae /gcc/basic-block.h
parent0a244baed44e7f9aa9464b1485e529b9452587bc (diff)
downloadgcc-68676d00311605a8ea7d8b5698e3508465a8fbdb.tar.gz
* 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/basic-block.h')
-rw-r--r--gcc/basic-block.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h
index a946405ee5e..465587e9ac5 100644
--- a/gcc/basic-block.h
+++ b/gcc/basic-block.h
@@ -102,11 +102,11 @@ extern int n_basic_blocks;
/* Index by basic block number, get first insn in the block. */
-extern rtx *basic_block_head;
+extern rtx *x_basic_block_head;
/* Index by basic block number, get last insn in the block. */
-extern rtx *basic_block_end;
+extern rtx *x_basic_block_end;
/* Index by basic block number, determine whether the block can be reached
through a computed jump. */
@@ -176,8 +176,8 @@ extern void free_int_list PROTO ((int_list_block **));
/* Stuff for recording basic block info. */
-#define BLOCK_HEAD(B) basic_block_head[(B)]
-#define BLOCK_END(B) basic_block_end[(B)]
+#define BLOCK_HEAD(B) x_basic_block_head[(B)]
+#define BLOCK_END(B) x_basic_block_end[(B)]
/* Special block numbers [markers] for entry and exit. */
#define ENTRY_BLOCK (-1)