cfgloop.h: Reword comment describing is_exit flag
authorAlex Coplan <alex.coplan@arm.com>
Fri, 18 Sep 2020 09:43:53 +0000 (10:43 +0100)
committerAlex Coplan <alex.coplan@arm.com>
Fri, 18 Sep 2020 09:45:40 +0000 (10:45 +0100)
This simple change rewords a comment in cfgloop.h to improve the grammar
and readability.

gcc/ChangeLog:

* cfgloop.h (nb_iter_bound): Reword comment describing is_exit.

gcc/cfgloop.h

index 18b404e292f456e00f70c519195f951d38ba0b33..be978288aabfcd7a70dfc6aeaa0594ebb750a9d2 100644 (file)
@@ -60,9 +60,9 @@ public:
      b) it is consistent with the result of number_of_iterations_exit.  */
   widest_int bound;
 
-  /* True if the statement will cause the loop to be leaved the (at most)
-     BOUND + 1-st time it is executed, that is, all the statements after it
-     are executed at most BOUND times.  */
+  /* True if, after executing the statement BOUND + 1 times, we will
+     leave the loop; that is, all the statements after it are executed at most
+     BOUND times.  */
   bool is_exit;
 
   /* The next bound in the list.  */