From: Kazu Hirata Date: Tue, 8 Mar 2005 16:19:35 +0000 (+0000) Subject: * sched-deps.c (cache_size): Make it static. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=392c64a09029f3c6bd6deb3ffc5edbca68bd38b2;p=gcc.git * sched-deps.c (cache_size): Make it static. From-SVN: r96111 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d2e8a8f98ed..3417d338f95 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -9,6 +9,8 @@ * tree-flow.h: Remove the corresponding prototype. Don't declare lower_data. + * sched-deps.c (cache_size): Make it static. + 2005-03-08 Julian Brown * config/elfos.h (MAKE_DECL_ONE_ONLY): Redefined to stop DECL_WEAK diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c index 13dd6e78456..933d74da60c 100644 --- a/gcc/sched-deps.c +++ b/gcc/sched-deps.c @@ -76,7 +76,7 @@ static enum reg_pending_barrier_mode reg_pending_barrier; static bitmap_head *true_dependency_cache; static bitmap_head *anti_dependency_cache; static bitmap_head *output_dependency_cache; -int cache_size; +static int cache_size; /* To speed up checking consistency of formed forward insn dependencies we use the following cache. Another possible solution