* ipa-param-manipulation.c
authorJakub Jelinek <jakub@redhat.com>
Tue, 10 Dec 2019 20:35:30 +0000 (21:35 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 10 Dec 2019 20:35:30 +0000 (21:35 +0100)
(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

gcc/ChangeLog
gcc/ipa-param-manipulation.c
gcc/ipa-sra.c

index 570f65fa818832406a5adfb0d3a19462f1e0658d..8130b6689daaa67b95d61fc8dfc2d7fbb88b8da2 100644 (file)
@@ -1,3 +1,13 @@
+2019-12-10  Jakub Jelinek  <jakub@redhat.com>
+
+       * 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.
+
 2019-12-10  Jan Hubicka  <hubicka@ucw.cz>
 
        * cgraph.c (cgraph_node::verify_node): Verify tp_first_run.
index bbf646726e230d32c749a0790fd2c35333e38583..28ac2b8ad6e7fba2599d76e08bfb4e1a4875cca6 100644 (file)
@@ -895,7 +895,7 @@ ipa_param_adjustments::debug ()
 }
 
 /* Register that REPLACEMENT should replace parameter described in APM and
-   optionally as DUMMY to mark transitive splits accross calls.  */
+   optionally as DUMMY to mark transitive splits across calls.  */
 
 void
 ipa_param_body_adjustments::register_replacement (ipa_adjusted_param *apm,
index c6ed0f44b8775352129eb94841ee2189206170d1..421c0899e11b9895e471443dcbc89f572d7f6e47 100644 (file)
@@ -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);