diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-26 18:06:38 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-26 18:06:38 +0000 |
commit | edfe0dbf0d61f42f48dc544b35c45687cbe1e9b0 (patch) | |
tree | e691ad2d1c68ced9688625a401830f3a64cc09f0 /gcc/dominance.c | |
parent | be429d54aa868e7f0ae64bf9efe09da13d1c66d3 (diff) | |
download | gcc-edfe0dbf0d61f42f48dc544b35c45687cbe1e9b0.tar.gz |
* dominance.c (dom_computed, n_bbs_in_dom_tree): Removed.
* function.h (dom_computed, n_bbs_in_dom_tree): New macros.
* basic-block.h (struct control_flow_graph): Added x_dom_computed
and x_n_bbs_in_dom_tree fields.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126960 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dominance.c')
-rw-r--r-- | gcc/dominance.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/dominance.c b/gcc/dominance.c index 12f74fffdfe..a67cb37cd09 100644 --- a/gcc/dominance.c +++ b/gcc/dominance.c @@ -47,9 +47,6 @@ #include "pointer-set.h" #include "graphds.h" -/* Whether the dominators and the postdominators are available. */ -static enum dom_state dom_computed[2]; - /* We name our nodes with integers, beginning with 1. Zero is reserved for 'undefined' or 'end of list'. The name of each node is given by the dfs number of the corresponding basic block. Please note, that we include the @@ -125,9 +122,6 @@ static void calc_idoms (struct dom_info *, bool); void debug_dominance_info (enum cdi_direction); void debug_dominance_tree (enum cdi_direction, basic_block); -/* Keeps track of the*/ -static unsigned n_bbs_in_dom_tree[2]; - /* Helper macro for allocating and initializing an array, for aesthetic reasons. */ #define init_ar(var, type, num, content) \ |