diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-04-29 15:39:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-04-29 15:39:12 +0000 |
commit | 2b8a92de97e0f6f528dff536742a2a6cf89355b5 (patch) | |
tree | 6c0fb333200e6a04c7e72f1b30ce293bef0d3d4c /gcc/cgraphunit.c | |
parent | 8fd583973e51d76536f33d0d57120bf69e43f408 (diff) | |
download | gcc-2b8a92de97e0f6f528dff536742a2a6cf89355b5.zip gcc-2b8a92de97e0f6f528dff536742a2a6cf89355b5.tar.gz gcc-2b8a92de97e0f6f528dff536742a2a6cf89355b5.tar.bz2 |
builtins.c, [...]: Fix comment typos.
* builtins.c, cgraph.c, cgraphunit.c, final.c, fold-const.c:
Fix comment typos.
From-SVN: r81291
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 4bdd41a..cbe468e 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -923,7 +923,7 @@ cgraph_remove_unreachable_nodes (void) eliminated Reachable extern inline functions we sometimes inlined will be turned into unanalyzed nodes so they look like for true extern functions to the rest - of code. Body of such functions is relased via remove_node once the + of code. Body of such functions is released via remove_node once the inline clones are eliminated. */ for (node = cgraph_nodes; node; node = node->next) { @@ -1047,7 +1047,7 @@ cgraph_clone_inlined_nodes (struct cgraph_edge *e, bool duplicate) else e->callee->global.inlined_to = e->caller; - /* Recursivly clone all bodies. */ + /* Recursively clone all bodies. */ for (e = e->callee->callees; e; e = e->next_callee) if (!e->inline_failed) cgraph_clone_inlined_nodes (e, duplicate); @@ -1110,7 +1110,7 @@ cgraph_mark_inline (struct cgraph_edge *edge) struct cgraph_edge *e, *next; int times = 0; - /* Look for all calls, mark them inline and clone recursivly + /* Look for all calls, mark them inline and clone recursively all inlined functions. */ for (e = what->callers; e; e = next) { @@ -1182,7 +1182,7 @@ cgraph_default_inline_p (struct cgraph_node *n) /* Return true when inlining WHAT would create recursive inlining. We call recursive inlining all cases where same function appears more than - once in the single recusion nest path in the inline graph. */ + once in the single recursion nest path in the inline graph. */ static bool cgraph_recursive_inlining_p (struct cgraph_node *to, |