diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-07 14:04:59 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-07 14:04:59 +0000 |
commit | b4699230235721626dbab1dd966bca5686155387 (patch) | |
tree | 5978cc026cbcdec398b6388d7cfa09cea3a7d99c /gcc/tree-ssa-dce.c | |
parent | 7cd3daacfa99115cf180a2f09013ffd5ef5067ad (diff) | |
download | gcc-b4699230235721626dbab1dd966bca5686155387.tar.gz |
* tree-ssa-dce.c (control_dependence_map,
visited_control_parents): Make them static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96020 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-dce.c')
-rw-r--r-- | gcc/tree-ssa-dce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-dce.c b/gcc/tree-ssa-dce.c index 6920ee101ae..a6199e7c810 100644 --- a/gcc/tree-ssa-dce.c +++ b/gcc/tree-ssa-dce.c @@ -91,11 +91,11 @@ static sbitmap last_stmt_necessary; use a bitmap for each block recording its edges. An array holds the bitmap. The Ith bit in the bitmap is set if that block is dependent on the Ith edge. */ -bitmap *control_dependence_map; +static bitmap *control_dependence_map; /* Vector indicating that a basic block has already had all the edges processed that it is control dependent on. */ -sbitmap visited_control_parents; +static sbitmap visited_control_parents; /* Execute CODE for each edge (given number EDGE_NUMBER within the CODE) for which the block with index N is control dependent. */ |