[COMMITTED] Tweak some comments.

Message ID 5cd5fb86-225d-bb05-7942-e628c5c350d3@redhat.com
State Committed
Headers
Series [COMMITTED] Tweak some comments. |

Commit Message

Andrew MacLeod May 25, 2022, 2:42 p.m. UTC
  Just fixed some misspelling and such.

pushed.

Andrew
  

Comments

Bernhard Reutner-Fischer May 25, 2022, 10:42 p.m. UTC | #1
On 25 May 2022 16:42:05 CEST, Andrew MacLeod via Gcc-patches <gcc-patches@gcc.gnu.org> wrote:
>Just fixed some misspelling and such.

Thanks!
  

Patch

commit 761cc32e5a1c762f91904d2a86980f106a5bc441
Author: Andrew MacLeod <amacleod@redhat.com>
Date:   Wed May 25 10:39:31 2022 -0400

    Tweak comments.
    
    Adjust some mispellings in comments.
    
            * gimple-range-cache.cc: Adjust comments.
            * gimple-range-infer.cc: Adjust comments.
            * gimple-range-infer.h: Adjust comments.
            * gimple-range.cc: Adjust comments.

diff --git a/gcc/gimple-range-cache.cc b/gcc/gimple-range-cache.cc
index 5d5e2bfd0c3..6e73ac706ac 100644
--- a/gcc/gimple-range-cache.cc
+++ b/gcc/gimple-range-cache.cc
@@ -1440,7 +1440,7 @@  ranger_cache::apply_inferred_ranges (gimple *s)
   if (infer.num () == 0)
     return;
 
-  // Do not update the on-netry cache for block ending stmts.
+  // Do not update the on-entry cache for block ending stmts.
   if (stmt_ends_bb_p (s))
     {
       edge_iterator ei;
diff --git a/gcc/gimple-range-infer.cc b/gcc/gimple-range-infer.cc
index 8e25830849f..545d4f2de3d 100644
--- a/gcc/gimple-range-infer.cc
+++ b/gcc/gimple-range-infer.cc
@@ -120,7 +120,7 @@  gimple_infer_range::gimple_infer_range (gimple *s)
 
 // -------------------------------------------------------------------------
 
-// This class is an element in list of infered ranges.
+// This class is an element in the list of infered ranges.
 
 class exit_range
 {
diff --git a/gcc/gimple-range-infer.h b/gcc/gimple-range-infer.h
index 629436753e9..412958fe28e 100644
--- a/gcc/gimple-range-infer.h
+++ b/gcc/gimple-range-infer.h
@@ -26,7 +26,7 @@  along with GCC; see the file COPYING3.  If not see
 
 // This class manages an on-demand summary of inferred ranges for a statement.
 // It can be instantiated as required and provides a list of inferred ranges.
-// New inferred ranges should added in the constructor of this class.
+// New inferred ranges should be added in the constructor of this class.
 
 class gimple_infer_range
 {
@@ -49,7 +49,7 @@  private:
 
 // This class manages a list of inferred ranges for each basic block.
 // As inferences are made, they can be registered to a block and later
-// queried.  WHen constructed with a TRUE flag, immediate uses chains are
+// queried.  When constructed with a TRUE flag, immediate uses chains are
 // followed the first time a name is referenced and block populated if
 // there are any inferred ranges.
 
diff --git a/gcc/gimple-range.cc b/gcc/gimple-range.cc
index 08a9c01e91a..53f4865af3b 100644
--- a/gcc/gimple-range.cc
+++ b/gcc/gimple-range.cc
@@ -118,7 +118,7 @@  gimple_ranger::range_of_expr (irange &r, tree expr, gimple *stmt)
       // If name is defined in this block, try to get an range from S.
       if (def_stmt && gimple_bb (def_stmt) == bb)
 	{
-	  // Declared in ths block, if it has a global set, check for an
+	  // Declared in this block, if it has a global set, check for an
 	  // override from a block walk, otherwise calculate it.
 	  if (m_cache.get_global_range (r, expr))
 	    m_cache.block_range (r, bb, expr, false);