tracer: Make bb_seen static

bb_seen is not used outside of tracer.c.


	* tracer.c (bb_seen): Make static.

From-SVN: r235585
This commit is contained in:
Segher Boessenkool 2016-04-28 19:08:39 +02:00 committed by Segher Boessenkool
parent 87c509e078
commit 7ff75c4966
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2016-04-28 Segher Boesssenkool <segher@kernel.crashing.org>
* tracer.c (bb_seen): Make static.
2016-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
* common/config/arc/arc-common.c (arc_handle_option): Add NPS400

View File

@ -65,7 +65,7 @@ static int branch_ratio_cutoff;
/* A bit BB->index is set if BB has already been seen, i.e. it is
connected to some trace already. */
sbitmap bb_seen;
static sbitmap bb_seen;
static inline void
mark_bb_seen (basic_block bb)