bb-reorder.c (max_entry_frequency, [...]): Make them static.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 7 Mar 2005 13:42:53 +0000 (13:42 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 7 Mar 2005 13:42:53 +0000 (13:42 +0000)
* bb-reorder.c (max_entry_frequency, max_entry_frequency):
Make them static.

From-SVN: r96011

gcc/ChangeLog
gcc/bb-reorder.c

index d43ce69..241abf0 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-07  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * bb-reorder.c (max_entry_frequency, max_entry_frequency):
+       Make them static.
+
 2005-03-07  David Billinghurst <David.Billinghurst@riotinto.com>
 
        * config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv.
index 44a5011..0bc2f91 100644 (file)
@@ -153,8 +153,8 @@ struct trace
 };
 
 /* Maximum frequency and count of one of the entry blocks.  */
-int max_entry_frequency;
-gcov_type max_entry_count;
+static int max_entry_frequency;
+static gcov_type max_entry_count;
 
 /* Local function prototypes.  */
 static void find_traces (int *, struct trace *);