Commit 797c289c by Kazu Hirata Committed by Kazu Hirata

cfghooks.c (delete_basic_block): Remove code to truncate edge vectors.

	* cfghooks.c (delete_basic_block): Remove code to truncate
	edge vectors.

From-SVN: r90081
parent db20bd62
2004-11-04 Kazu Hirata <kazu@cs.umass.edu>
* cfghooks.c (delete_basic_block): Remove code to truncate
edge vectors.
2004-11-04 Andrew Pinski <pinskia@physics.uc.edu>
* flow.c (init_propagate_block_info): Change the type of i to
......
......@@ -368,9 +368,6 @@ delete_basic_block (basic_block bb)
while (EDGE_COUNT (bb->succs) != 0)
remove_edge (EDGE_SUCC (bb, 0));
VEC_truncate (edge, bb->preds, 0);
VEC_truncate (edge, bb->succs, 0);
if (dom_computed[CDI_DOMINATORS])
delete_from_dominance_info (CDI_DOMINATORS, bb);
if (dom_computed[CDI_POST_DOMINATORS])
......
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