Commit 17a4fdaa by Kazu Hirata Committed by Kazu Hirata

cfgloopmanip.c (split_loop_bb): Remove.

	* cfgloopmanip.c (split_loop_bb): Remove.
	* cfgloop.h: Remove the prototype for split_loop_bb.

From-SVN: r110324
parent e6620e86
......@@ -4,6 +4,9 @@
* c-typeck.c (build_binary_op): Perform implicit casts of
operands before shortening them.
* cfgloopmanip.c (split_loop_bb): Remove.
* cfgloop.h: Remove the prototype for split_loop_bb.
2006-01-27 H.J. Lu <hongjiu.lu@intel.com>
* df-scan.c (df_record_entry_block_defs): Check if
......
......@@ -311,7 +311,6 @@ extern struct loop *loopify (struct loops *, edge, edge,
struct loop * loop_version (struct loops *, struct loop *, void *,
basic_block *, bool);
extern bool remove_path (struct loops *, edge);
extern edge split_loop_bb (basic_block, void *);
/* Induction variable analysis. */
......
......@@ -52,22 +52,6 @@ static void unloop (struct loops *, struct loop *);
#define RDIV(X,Y) (((X) + (Y) / 2) / (Y))
/* Splits basic block BB after INSN, returns created edge. Updates loops
and dominators. */
edge
split_loop_bb (basic_block bb, void *insn)
{
edge e;
/* Split the block. */
e = split_block (bb, insn);
/* Add dest to loop. */
add_bb_to_loop (e->dest, e->src->loop_father);
return e;
}
/* Checks whether basic block BB is dominated by DATA. */
static bool
rpe_enum_p (basic_block bb, void *data)
......
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