===================================================================
@@ -4941,7 +4941,7 @@
/* Cleanup possibly empty blocks left. */
block_next = bb->next_bb;
if (bb != block_from)
- maybe_tidy_empty_bb (bb);
+ maybe_tidy_empty_bb (bb, false);
bb = block_next;
}
===================================================================
@@ -3540,7 +3540,7 @@
}
/* Tidy the possibly empty block BB. */
-static bool
+bool
maybe_tidy_empty_bb (basic_block bb, bool recompute_toporder_p)
{
basic_block succ_bb, pred_bb;
===================================================================
@@ -1619,6 +1619,7 @@
extern void free_bb_note_pool (void);
extern void sel_remove_empty_bb (basic_block, bool, bool);
+extern bool maybe_tidy_empty_bb (basic_block, bool);
extern void purge_empty_blocks (void);
extern basic_block sel_split_edge (edge);
extern basic_block sel_create_recovery_block (insn_t);
On Mon, 6 Sep 2010, Paolo Carlini wrote: > ... as far as I can see, this patch is breaking the build: Yes, I checked in a 4.4 patch into trunk by mistake. I have committed the following patch to fix the build error. 2010-09-06 Alexander Monakov <amonakov@ispras.ru> * sel-sched.c (move_cond_jump): Correct arguments to maybe_tidy_empty_bb. * sel-sched-ir.c (maybe_tidy_empty_bb): Export.