summaryrefslogtreecommitdiff
path: root/gcc/bb-reorder.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-07 13:42:53 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-07 13:42:53 +0000
commitffcdc9fae00477725d9815822ed93953d91de602 (patch)
tree37f3137774025d8eb4713641d0bb6fb5e6bba3b3 /gcc/bb-reorder.c
parentdb091622e4b692dd405d8af5d246ef6411817d8a (diff)
downloadgcc-ffcdc9fae00477725d9815822ed93953d91de602.tar.gz
* bb-reorder.c (max_entry_frequency, max_entry_frequency):
Make them static. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96011 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r--gcc/bb-reorder.c4
1 files changed, 2 insertions, 2 deletions
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 *);