From: Kazu Hirata Date: Mon, 7 Mar 2005 13:42:53 +0000 (+0000) Subject: bb-reorder.c (max_entry_frequency, [...]): Make them static. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cd735ab818d1ec16ee650d076801bc0d7ac5d1ec;p=gcc.git bb-reorder.c (max_entry_frequency, [...]): Make them static. * bb-reorder.c (max_entry_frequency, max_entry_frequency): Make them static. From-SVN: r96011 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d43ce690169..241abf0ac0b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-03-07 Kazu Hirata + + * bb-reorder.c (max_entry_frequency, max_entry_frequency): + Make them static. + 2005-03-07 David Billinghurst * config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv. diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 44a501161ab..0bc2f913122 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -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 *);