diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-09 06:03:16 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-09 06:03:16 +0000 |
commit | 20dd417af30c7acc30f73bad9adf49073e48e6af (patch) | |
tree | 5f5de869671afe0860dba99e31812a0a95a46c55 /gcc/doloop.c | |
parent | a26c43b2bf728f8eb14bd1f711e535a1fba3f484 (diff) | |
download | gcc-20dd417af30c7acc30f73bad9adf49073e48e6af.tar.gz |
* c-common.c: Fix comment typos.
* cfgrtl.c: Likewise.
* collect2.c: Likewise.
* cpplex.c: Likewise.
* doloop.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* gcc.c: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
* global.c: Likewise.
* ifcvt.c: Likewise.
* loop.c: Likewise.
* optabs.c: Likewise.
* protoize.c: Likewise.
* regclass.c: Likewise.
* reorg.c: Likewise.
* rtl.h: Likewise.
* stmt.c: Likewise.
* tree.h: Likewise.
* doc/cpp.texi: Likewise.
* doc/c-tree.texi: Likewise.
* doc/extend.texi: Likewise.
* doc/invoke.texi: Likewise.
* doc/objc.texi: Likewise.
* doc/tm.texi: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46114 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doloop.c')
-rw-r--r-- | gcc/doloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doloop.c b/gcc/doloop.c index 283080bb429..849f30e2ef7 100644 --- a/gcc/doloop.c +++ b/gcc/doloop.c @@ -141,7 +141,7 @@ doloop_condition_get (pattern) /* Return an estimate of the maximum number of loop iterations for the loop specified by LOOP or zero if the loop is not normal. MODE is the mode of the iteration count and NONNEG is non-zero if - the the iteration count has been proved to be non-negative. */ + the iteration count has been proved to be non-negative. */ static unsigned HOST_WIDE_INT doloop_iterations_max (loop_info, mode, nonneg) const struct loop_info *loop_info; @@ -336,7 +336,7 @@ doloop_valid_p (loop, jump_insn) /* There is no guarantee that a NE loop will terminate if the absolute increment is not unity. ??? We could compute this - condition at run-time and have a additional jump around the loop + condition at run-time and have an additional jump around the loop to ensure an infinite loop. */ if (loop_info->comparison_code == NE && INTVAL (loop_info->increment) != -1 |