Commit e0cc7f73 by Aldy Hernandez Committed by Aldy Hernandez

* cgraphunit.c (cgraph_postorder): Fix typo in comment.

From-SVN: r77257
parent 56766e0d
2004-02-04 Aldy Hernandez <aldyh@redhat.com>
* cgraphunit.c (cgraph_postorder): Fix typo in comment.
2004-02-04 Ulrich Weigand <uweigand@de.ibm.com> 2004-02-04 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.md ("*la_64" + peepholes, "reload_indi"): Move * config/s390/s390.md ("*la_64" + peepholes, "reload_indi"): Move
......
...@@ -555,7 +555,7 @@ cgraph_postorder (struct cgraph_node **order) ...@@ -555,7 +555,7 @@ cgraph_postorder (struct cgraph_node **order)
/* We have to deal with cycles nicely, so use a depth first traversal /* We have to deal with cycles nicely, so use a depth first traversal
output algorithm. Ignore the fact that some functions won't need output algorithm. Ignore the fact that some functions won't need
to be output and put them into order as well, so we get dependencies to be output and put them into order as well, so we get dependencies
right through intline functions. */ right throughout inline functions. */
for (node = cgraph_nodes; node; node = node->next) for (node = cgraph_nodes; node; node = node->next)
node->aux = NULL; node->aux = NULL;
for (node = cgraph_nodes; node; node = node->next) for (node = cgraph_nodes; node; node = node->next)
......
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