aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c6
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. */