aboutsummaryrefslogtreecommitdiff
path: root/gcc/doloop.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2001-10-09 06:03:16 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2001-10-09 06:03:16 +0000
commit4fe9b91c45b7b0ba4b02069f821e64fd572ce950 (patch)
tree5f5de869671afe0860dba99e31812a0a95a46c55 /gcc/doloop.c
parent908fecca8cba9118747951b2d9883b8abd4a94b6 (diff)
downloadgcc-4fe9b91c45b7b0ba4b02069f821e64fd572ce950.zip
gcc-4fe9b91c45b7b0ba4b02069f821e64fd572ce950.tar.gz
gcc-4fe9b91c45b7b0ba4b02069f821e64fd572ce950.tar.bz2
c-common.c: Fix comment typos.
* 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. From-SVN: r46114
Diffstat (limited to 'gcc/doloop.c')
-rw-r--r--gcc/doloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doloop.c b/gcc/doloop.c
index 283080b..849f30e 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