diff options
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 3ac7fbd6034..017c205d086 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -181,7 +181,6 @@ static fibheapkey_t bb_to_key (basic_block); static bool better_edge_p (const_basic_block, const_edge, int, int, int, int, const_edge); static void connect_traces (int, struct trace *); static bool copy_bb_p (const_basic_block, int); -static int get_uncond_jump_length (void); static bool push_to_next_round_p (const_basic_block, int, int, int, gcov_type); /* Check to see if bb should be pushed into the next round of trace @@ -1193,7 +1192,7 @@ copy_bb_p (const_basic_block bb, int code_may_grow) /* Return the length of unconditional jump instruction. */ -static int +int get_uncond_jump_length (void) { rtx label, jump; |