diff options
author | Alex Coplan <alex.coplan@arm.com> | 2020-09-18 10:43:53 +0100 |
---|---|---|
committer | Alex Coplan <alex.coplan@arm.com> | 2020-09-18 10:45:40 +0100 |
commit | 2bc8c6ed8492a3027d88974eee3426771cfb78eb (patch) | |
tree | 06f675ec0db7bbe32890a3a2c8dd6b80024cee3d | |
parent | 3ea069da14c5f6276ae26d2109e9ae0765c09199 (diff) | |
download | gcc-2bc8c6ed8492a3027d88974eee3426771cfb78eb.zip gcc-2bc8c6ed8492a3027d88974eee3426771cfb78eb.tar.gz gcc-2bc8c6ed8492a3027d88974eee3426771cfb78eb.tar.bz2 |
cfgloop.h: Reword comment describing is_exit flag
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.
-rw-r--r-- | gcc/cfgloop.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfgloop.h b/gcc/cfgloop.h index 18b404e..be97828 100644 --- a/gcc/cfgloop.h +++ b/gcc/cfgloop.h @@ -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. */ |