diff options
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/tree-ssa-pre.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5caa4ca..719b838 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -27,6 +27,8 @@ * stor-layout.c (set_alignment): Remove. * tree.h: Remove the corresponding prototype. + * tree-ssa-pre.c (has_abnormal_preds): Make it 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-pre.c b/gcc/tree-ssa-pre.c index f4488a7..0f89bed 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -1103,7 +1103,7 @@ clean (value_set_t set) } DEF_VEC_MALLOC_P (basic_block); -sbitmap has_abnormal_preds; +static sbitmap has_abnormal_preds; /* Compute the ANTIC set for BLOCK. |