Commit 8930ce20 by Kazu Hirata Committed by Kazu Hirata

* tree-phinodes.c (remove_phi_arg_num): Fix a comment.

From-SVN: r91608
parent 84dcde01
2004-12-02 Kazu Hirata <kazu@cs.umass.edu>
* tree-phinodes.c (remove_phi_arg_num): Fix a comment.
2004-12-02 Alan Modra <amodra@bigpond.net.au> 2004-12-02 Alan Modra <amodra@bigpond.net.au>
PR target/16952 PR target/16952
......
...@@ -360,10 +360,10 @@ add_phi_arg (tree phi, tree def, edge e) ...@@ -360,10 +360,10 @@ add_phi_arg (tree phi, tree def, edge e)
PHI_ARG_NONZERO (phi, e->dest_idx) = false; PHI_ARG_NONZERO (phi, e->dest_idx) = false;
} }
/* Remove the Ith argument from PHI's argument list. This routine assumes /* Remove the Ith argument from PHI's argument list. This routine
ordering of alternatives in the vector is not important and implements implements removal by swapping the last alternative with the
removal by swapping the last alternative with the alternative we want to alternative we want to delete and then shrinking the vector, which
delete, then shrinking the vector. */ is consistent with how we remove an edge from the edge vector. */
static void static void
remove_phi_arg_num (tree phi, int i) remove_phi_arg_num (tree phi, int i)
......
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