Commit 7ff75c49 by Segher Boessenkool Committed by Segher Boessenkool

tracer: Make bb_seen static

bb_seen is not used outside of tracer.c.


	* tracer.c (bb_seen): Make static.

From-SVN: r235585
parent 87c509e0
2016-04-28 Segher Boesssenkool <segher@kernel.crashing.org>
* tracer.c (bb_seen): Make static.
2016-04-28 Andrew Burgess <andrew.burgess@embecosm.com> 2016-04-28 Andrew Burgess <andrew.burgess@embecosm.com>
* common/config/arc/arc-common.c (arc_handle_option): Add NPS400 * common/config/arc/arc-common.c (arc_handle_option): Add NPS400
......
...@@ -65,7 +65,7 @@ static int branch_ratio_cutoff; ...@@ -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 /* A bit BB->index is set if BB has already been seen, i.e. it is
connected to some trace already. */ connected to some trace already. */
sbitmap bb_seen; static sbitmap bb_seen;
static inline void static inline void
mark_bb_seen (basic_block bb) mark_bb_seen (basic_block bb)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment