diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-20 05:21:41 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-20 05:21:41 +0000 |
commit | 3927afe00736d112235414ba26efbb13f2830057 (patch) | |
tree | 89910945dd096ed9ce8332b32730542c69fd2051 /gcc/cgraphunit.c | |
parent | 883b2e736539f4112f9ebb1a4528db015b217672 (diff) | |
download | gcc-3927afe00736d112235414ba26efbb13f2830057.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79730 138bc75d-0d04-0410-961f-82ee72b054a4
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 2ebc4d77783..f871ef4ed6e 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. */ |