From e0cc7f73ab6d5d6a6bbc11ab2be7b50580c8741d Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Wed, 4 Feb 2004 17:38:22 +0000 Subject: [PATCH] * cgraphunit.c (cgraph_postorder): Fix typo in comment. From-SVN: r77257 --- gcc/ChangeLog | 4 ++++ gcc/cgraphunit.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1934fa9d6b..43d54a1855c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-02-04 Aldy Hernandez + + * cgraphunit.c (cgraph_postorder): Fix typo in comment. + 2004-02-04 Ulrich Weigand * config/s390/s390.md ("*la_64" + peepholes, "reload_indi"): Move diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index f68bd2a34df..ea9cae664b2 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -555,7 +555,7 @@ cgraph_postorder (struct cgraph_node **order) /* We have to deal with cycles nicely, so use a depth first traversal 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 - right through intline functions. */ + right throughout inline functions. */ for (node = cgraph_nodes; node; node = node->next) node->aux = NULL; for (node = cgraph_nodes; node; node = node->next) -- 2.30.2