Commit f0fda11c by Jan Hubicka Committed by Jan Hubicka

basic-block.h (flow_delete_block_noexpunge): Kill.

	* basic-block.h (flow_delete_block_noexpunge): Kill.
	* cfgrtl.c (flow_delete_block_noexpunge): Merge to
	rtl_delete_block.

From-SVN: r67846
parent d6fc0492
Thu Jun 12 20:00:55 CEST 2003 Jan Hubicka <jh@suse.cz>
* basic-block.h (flow_delete_block_noexpunge): Kill.
* cfgrtl.c (flow_delete_block_noexpunge): Merge to
rtl_delete_block.
2003-06-10 Richard Henderson <rth@redhat.com> 2003-06-10 Richard Henderson <rth@redhat.com>
PR inline-asm/4823 PR inline-asm/4823
......
...@@ -362,7 +362,6 @@ extern edge redirect_edge_succ_nodup PARAMS ((edge, basic_block)); ...@@ -362,7 +362,6 @@ extern edge redirect_edge_succ_nodup PARAMS ((edge, basic_block));
extern void redirect_edge_pred PARAMS ((edge, basic_block)); extern void redirect_edge_pred PARAMS ((edge, basic_block));
extern basic_block create_basic_block_structure PARAMS ((rtx, rtx, rtx, basic_block)); extern basic_block create_basic_block_structure PARAMS ((rtx, rtx, rtx, basic_block));
extern basic_block create_basic_block PARAMS ((rtx, rtx, basic_block)); extern basic_block create_basic_block PARAMS ((rtx, rtx, basic_block));
extern void flow_delete_block_noexpunge PARAMS ((basic_block));
extern void clear_bb_flags PARAMS ((void)); extern void clear_bb_flags PARAMS ((void));
extern void merge_blocks_nomove PARAMS ((basic_block, basic_block)); extern void merge_blocks_nomove PARAMS ((basic_block, basic_block));
extern void tidy_fallthru_edge PARAMS ((edge, basic_block, extern void tidy_fallthru_edge PARAMS ((edge, basic_block,
......
...@@ -357,8 +357,8 @@ create_basic_block (head, end, after) ...@@ -357,8 +357,8 @@ create_basic_block (head, end, after)
/* ??? Preserving all such notes strikes me as wrong. It would be nice /* ??? Preserving all such notes strikes me as wrong. It would be nice
to post-process the stream to remove empty blocks, loops, ranges, etc. */ to post-process the stream to remove empty blocks, loops, ranges, etc. */
void static void
flow_delete_block_noexpunge (b) rtl_delete_block (b)
basic_block b; basic_block b;
{ {
rtx insn, end, tmp; rtx insn, end, tmp;
...@@ -412,13 +412,6 @@ flow_delete_block_noexpunge (b) ...@@ -412,13 +412,6 @@ flow_delete_block_noexpunge (b)
b->pred = NULL; b->pred = NULL;
b->succ = NULL; b->succ = NULL;
}
static void
rtl_delete_block (b)
basic_block b;
{
flow_delete_block_noexpunge (b);
/* Remove the basic block from the array. */ /* Remove the basic block from the array. */
expunge_block (b); expunge_block (b);
......
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