diff options
author | Jakub Jelinek <jakub@redhat.com> | 2019-11-23 12:44:51 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2019-11-23 12:44:51 +0100 |
commit | 956d615d66d06a9810000a5b7941be3ee1da7f8e (patch) | |
tree | c83ab08bf31cd219c19b4ce43217b5a462726223 /gcc/ipa-inline-transform.c | |
parent | 8d0d7a63019a7d67943d1867348673e3ca3dc824 (diff) | |
download | gcc-956d615d66d06a9810000a5b7941be3ee1da7f8e.zip gcc-956d615d66d06a9810000a5b7941be3ee1da7f8e.tar.gz gcc-956d615d66d06a9810000a5b7941be3ee1da7f8e.tar.bz2 |
ipa-fnsummary.c: Fix comment typos.
* ipa-fnsummary.c: Fix comment typos.
* ipa-ref.h: Likewise.
* ipa-predicate.h: Likewise.
* ipa-split.c: Likewise.
* ipa-inline-analysis.c: Likewise.
* ipa-predicate.c: Likewise.
* ipa-devirt.c: Likewise.
* ipa-icf.h: Likewise.
* profile-count.c: Likewise.
* ipa-icf.c: Likewise.
(sem_function::equals_wpa): Fix typos in dump messages.
* ipa-icf-gimple.h: Fix comment typos.
* ipa-inline-transform.c: Likewise.
* ipa-polymorphic-call.c: Likewise.
* ipa-fnsummary.h: Likewise.
* ipa-inline.c: Likewise.
(dump_inline_stats): Fix typo in debug dump message.
* profile-count.h: Fix comment typos.
From-SVN: r278643
Diffstat (limited to 'gcc/ipa-inline-transform.c')
-rw-r--r-- | gcc/ipa-inline-transform.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ipa-inline-transform.c b/gcc/ipa-inline-transform.c index e547521..e7ec7f9 100644 --- a/gcc/ipa-inline-transform.c +++ b/gcc/ipa-inline-transform.c @@ -105,7 +105,7 @@ can_remove_node_now_p_1 (struct cgraph_node *node, struct cgraph_edge *e) && (!DECL_VIRTUAL_P (node->decl) || !opt_for_fn (node->decl, flag_devirtualize)) /* During early inlining some unanalyzed cgraph nodes might be in the - callgraph and they might reffer the function in question. */ + callgraph and they might refer the function in question. */ && !cgraph_new_nodes.exists ()); } @@ -176,7 +176,7 @@ clone_inlined_nodes (struct cgraph_edge *e, bool duplicate, { /* We may eliminate the need for out-of-line copy to be output. In that case just go ahead and re-use it. This is not just an - memory optimization. Making offline copy of fuction disappear + memory optimization. Making offline copy of function disappear from the program will improve future decisions on inlining. */ if (!e->callee->callers->next_caller /* Recursive inlining never wants the master clone to @@ -192,7 +192,7 @@ clone_inlined_nodes (struct cgraph_edge *e, bool duplicate, need small function inlining to register edge removal hook to maintain the priority queue. - For now we keep the ohter functions in the group in program until + For now we keep the other functions in the group in program until cgraph_remove_unreachable_functions gets rid of them. */ gcc_assert (!e->callee->inlined_to); e->callee->remove_from_same_comdat_group (); |