diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-03-20 05:21:41 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-03-20 05:21:41 +0000 |
commit | d1a6adeb6743311f37affcce0a15df6f77a325a5 (patch) | |
tree | 89910945dd096ed9ce8332b32730542c69fd2051 /gcc/cgraphunit.c | |
parent | 5fd9b17875e5e720108ed599b262ad9464576956 (diff) | |
download | gcc-d1a6adeb6743311f37affcce0a15df6f77a325a5.zip gcc-d1a6adeb6743311f37affcce0a15df6f77a325a5.tar.gz gcc-d1a6adeb6743311f37affcce0a15df6f77a325a5.tar.bz2 |
c-common.c, [...]: Fix comment typos.
* c-common.c, cfgcleanup.c, cgraphunit.c, c-pretty-print.c,
expmed.c, ggc-common.c, jump.c, passes.c, recog.c, regmove.c,
reorg.c, tree.h: Fix comment typos.
From-SVN: r79730
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 2ebc4d7..f871ef4 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -398,7 +398,7 @@ cgraph_finalize_compilation_unit (void) cgraph_nodes_queue = cgraph_nodes_queue->next_needed; /* ??? It is possible to create extern inline function and later using - weak alas attribute to kill it's body. See + weak alas attribute to kill its body. See gcc.c-torture/compile/20011119-1.c */ if (!DECL_SAVED_TREE (decl)) continue; @@ -1508,7 +1508,7 @@ cgraph_inline_p (tree caller_decl, tree callee_decl, const char **reason) Attempt to topologically sort the nodes so function is output when all called functions are already assembled to allow data to be propagated across the callgraph. Use a stack to get smaller distance - between a function and it's callees (later we may choose to use a more + between a function and its callees (later we may choose to use a more sophisticated algorithm for function reordering; we will likely want to use subsections to make the output functions appear in top-down order). */ @@ -1543,7 +1543,7 @@ cgraph_expand_all_functions (void) /* Mark all local functions. A local function is one whose calls can occur only in the - current compilation unit and all it's calls are explicit, + current compilation unit and all its calls are explicit, so we can change its calling convention. We simply mark all static functions whose address is not taken as local. */ |