From: kazu Date: Mon, 7 Mar 2005 14:04:59 +0000 (+0000) Subject: * tree-ssa-dce.c (control_dependence_map, X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b4699230235721626dbab1dd966bca5686155387;p=thirdparty%2Fgcc.git * 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 719b838734ec..a7fc8e962bce 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 * 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 6920ee101aee..a6199e7c8107 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. */