Tweak comments.
authorAndrew MacLeod <amacleod@redhat.com>
Wed, 25 May 2022 14:39:31 +0000 (10:39 -0400)
committerAndrew MacLeod <amacleod@redhat.com>
Wed, 25 May 2022 14:39:31 +0000 (10:39 -0400)
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.

gcc/gimple-range-cache.cc
gcc/gimple-range-infer.cc
gcc/gimple-range-infer.h
gcc/gimple-range.cc

index 5d5e2bf..6e73ac7 100644 (file)
@@ -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;
index 8e25830..545d4f2 100644 (file)
@@ -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
 {
index 6294367..412958f 100644 (file)
@@ -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.
 
index 08a9c01..53f4865 100644 (file)
@@ -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);