summaryrefslogtreecommitdiff
path: root/gcc/basic-block.h
diff options
context:
space:
mode:
authordmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-09 20:02:33 +0000
committerdmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-09 20:02:33 +0000
commitf64d2ca41cef1e4a297beb231863bd8bb53d37a7 (patch)
tree28af56a0f26a4692c16613add501bc7186b7be8e /gcc/basic-block.h
parent3bedbae39765a69f700bebcbd60c6f4d7bf2bdcc (diff)
downloadgcc-f64d2ca41cef1e4a297beb231863bd8bb53d37a7.tar.gz
Eliminate SET_BASIC_BLOCK macro.
gcc/ * basic-block.h (SET_BASIC_BLOCK): Eliminate macro. * cfg.c (compact_blocks): Replace uses of SET_BASIC_BLOCK with SET_BASIC_BLOCK_FOR_FN, making use of cfun explicit. (expunge_block): Likewise. * cfgrtl.c (create_basic_block_structure): Likewise. * df-core.c (df_compact_blocks, df_bb_replace): Likewise. * sel-sched.c (create_block_for_bookkeeping): Likewise. * tree-cfg.c (create_bb): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205821 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r--gcc/basic-block.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h
index da93c6fbca8..f759e278973 100644
--- a/gcc/basic-block.h
+++ b/gcc/basic-block.h
@@ -333,7 +333,6 @@ struct GTY(()) control_flow_graph {
#define profile_status (cfun->cfg->x_profile_status)
#define BASIC_BLOCK(N) ((*basic_block_info)[(N)])
-#define SET_BASIC_BLOCK(N,BB) ((*basic_block_info)[(N)] = (BB))
/* For iterating over basic blocks. */
#define FOR_BB_BETWEEN(BB, FROM, TO, DIR) \