aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-sra.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2019-12-10 21:35:30 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2019-12-10 21:35:30 +0100
commit6b6a80654c704ee4ec9bb3c951af12353397a1b8 (patch)
tree8b61f2af27a0221e853834bb78805717824914ee /gcc/ipa-sra.c
parenteff66cd2aa4e6cbce289ce61aa903ed3ee4b52fa (diff)
downloadgcc-6b6a80654c704ee4ec9bb3c951af12353397a1b8.zip
gcc-6b6a80654c704ee4ec9bb3c951af12353397a1b8.tar.gz
gcc-6b6a80654c704ee4ec9bb3c951af12353397a1b8.tar.bz2
* ipa-param-manipulation.c
(ipa_param_body_adjustments::register_replacement): Fix comment typo - accross -> across. * ipa-sra.c (propagate_used_across_scc_edge, ipa_sra_analysis): Likewise. (param_splitting_across_edge): Fix typo in dump message - accross -> across. From-SVN: r279188
Diffstat (limited to 'gcc/ipa-sra.c')
-rw-r--r--gcc/ipa-sra.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ipa-sra.c b/gcc/ipa-sra.c
index c6ed0f4..421c089 100644
--- a/gcc/ipa-sra.c
+++ b/gcc/ipa-sra.c
@@ -3167,7 +3167,7 @@ isra_mark_caller_param_used (isra_func_summary *from_ifs, int input_idx,
/* Propagate information that any parameter is not used only locally within a
- SCC accross CS to the caller, which must be in the same SCC as the
+ SCC across CS to the caller, which must be in the same SCC as the
callee. Push any callers that need to be re-processed to STACK. */
static void
@@ -3397,7 +3397,7 @@ param_splitting_across_edge (cgraph_edge *cs)
: 0);
if (dump_file && (dump_flags & TDF_DETAILS))
- fprintf (dump_file, "Splitting accross %s->%s:\n",
+ fprintf (dump_file, "Splitting across %s->%s:\n",
cs->caller->dump_name (), callee->dump_name ());
unsigned i;
@@ -3876,9 +3876,9 @@ ipa_sra_analysis (void)
param_removal_cross_scc_edge (cs);
}
- /* Look at edges within the current SCC and propagate used-ness accross
- them, pushing onto the stack all notes which might need to be
- revisited. */
+ /* Look at edges within the current SCC and propagate used-ness across
+ them, pushing onto the stack all notes which might need to be
+ revisited. */
FOR_EACH_VEC_ELT (cycle_nodes, j, v)
v->call_for_symbol_thunks_and_aliases (propagate_used_to_scc_callers,
&stack, true);