diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-07 14:04:59 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-07 14:04:59 +0000 |
commit | 8c80c4aa63470f84317b0188e8da19dc66d9fc0c (patch) | |
tree | 5978cc026cbcdec398b6388d7cfa09cea3a7d99c | |
parent | d4222d4347d58e84bc032e05250450cdb1d8e72c (diff) | |
download | gcc-8c80c4aa63470f84317b0188e8da19dc66d9fc0c.zip gcc-8c80c4aa63470f84317b0188e8da19dc66d9fc0c.tar.gz gcc-8c80c4aa63470f84317b0188e8da19dc66d9fc0c.tar.bz2 |
tree-ssa-dce.c (control_dependence_map, [...]): Make them static.
* tree-ssa-dce.c (control_dependence_map,
visited_control_parents): Make them static.
From-SVN: r96020
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/tree-ssa-dce.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 719b838..a7fc8e9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -29,6 +29,9 @@ * tree-ssa-pre.c (has_abnormal_preds): Make it static. + * tree-ssa-dce.c (control_dependence_map, + visited_control_parents): Make them static. + 2005-03-07 David Billinghurst <David.Billinghurst@riotinto.com> * config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv. diff --git a/gcc/tree-ssa-dce.c b/gcc/tree-ssa-dce.c index 6920ee1..a6199e7 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. */ |