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 d43ce690169c58d649591cb068b1e75271c65e68..241abf0ac0b62cb67e6883d71fca7ec9bc58cf1b 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 44a501161ab5d95da7b84fe32b507d694de140d9..0bc2f913122f34de489f02867f27b5a19549c27a 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 *);