This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] sched-deps.c: Make cache_size static.


Hi,

Bootstrapped on i686-pc-linux-gnu.  Committed as preapproved.

Kazu Hirata

2005-03-08  Kazu Hirata  <kazu@cs.umass.edu>

	* sched-deps.c (cache_size): Make it static.

Index: sched-deps.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/sched-deps.c,v
retrieving revision 1.90
diff -u -d -p -r1.90 sched-deps.c
--- sched-deps.c	18 Jan 2005 11:36:20 -0000	1.90
+++ sched-deps.c	8 Mar 2005 13:08:16 -0000
@@ -76,7 +76,7 @@ static enum reg_pending_barrier_mode reg
 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]