Commit 92faa2d1 by Kazu Hirata Committed by Kazu Hirata

tree-phinodes.c (remove_phi_args): Replace phi_arg_from_edge with e->dest_idx.

	* tree-phinodes.c (remove_phi_args): Replace phi_arg_from_edge
	with e->dest_idx.

From-SVN: r91264
parent 5f0a713c
......@@ -3,6 +3,9 @@
* tree-outof-ssa.c (coalesce_abnormal_edges): Use e->dest_idx
instead of calling phi_arg_from_edge.
* tree-phinodes.c (remove_phi_args): Replace phi_arg_from_edge
with e->dest_idx.
2004-11-24 Ben Elliston <bje@au.ibm.com>
* config/i386/i386.h (ASM_OUTPUT_DWARF_ADDR_CONST): Remove.
......
......@@ -395,11 +395,7 @@ remove_phi_args (edge e)
tree phi;
for (phi = phi_nodes (e->dest); phi; phi = PHI_CHAIN (phi))
{
int index = phi_arg_from_edge (phi, e);
if (index >= 0)
remove_phi_arg_num (phi, index);
}
remove_phi_arg_num (phi, e->dest_idx);
}
/* Remove PHI node PHI from basic block BB. If PREV is non-NULL, it is
......
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