diff options
author | Joseph Myers <jsm28@gcc.gnu.org> | 2001-10-28 20:09:17 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-10-28 20:09:17 +0000 |
commit | ff7cc30768b33d4124a232f7f19cd1bc0fd62b51 (patch) | |
tree | c77fe1bb905e48b9ef6d1aa767606adced63e933 /gcc/loop.c | |
parent | 306ef64467b81eff37995c0620ee097c9d174463 (diff) | |
download | gcc-ff7cc30768b33d4124a232f7f19cd1bc0fd62b51.tar.gz |
ChangeLog.0, [...]: Fix spelling errors.
* ChangeLog.0, ChangeLog.1, ChangeLog.2, ChangeLog.3, ChangeLog.4,
ChangeLog.5, ChangeLog, FSFChangeLog.10, FSFChangeLog.11,
c-common.c, c-common.h, c-parse.in, c-typeck.c, cfg.c, config.gcc,
configure, configure.in, except.c, except.h, flow.c, function.c,
gcc.c, gcse.c, genrecog.c, libgcc2.c, loop.c, loop.h, params.def,
predict.def, predict.h, reg-stack.c, regmove.c, sched-deps.c,
sched-int.h, sibcall.c, ssa.c, stringpool.c, toplev.c, tree.c,
unroll.c: Fix spelling errors.
From-SVN: r46595
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index c81a2c645a2..8e880631261 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -6480,7 +6480,7 @@ combine_givs_p (g1, g2) { rtx comb, ret; - /* With the introduction of ext dependant givs, we must care for modes. + /* With the introduction of ext dependent givs, we must care for modes. G2 must not use a wider mode than G1. */ if (GET_MODE_SIZE (g1->mode) < GET_MODE_SIZE (g2->mode)) return NULL_RTX; @@ -6526,7 +6526,7 @@ combine_givs_p (g1, g2) return NULL_RTX; } -/* Check each extension dependant giv in this class to see if its +/* Check each extension dependent giv in this class to see if its root biv is safe from wrapping in the interior mode, which would make the giv illegal. */ @@ -6658,7 +6658,7 @@ check_ext_dependant_givs (bl, loop_info) if (loop_dump_stream) { fprintf (loop_dump_stream, - "Verified ext dependant giv at %d of reg %d\n", + "Verified ext dependent giv at %d of reg %d\n", INSN_UID (v->insn), bl->regno); } } @@ -6681,7 +6681,7 @@ check_ext_dependant_givs (bl, loop_info) } fprintf (loop_dump_stream, - "Failed ext dependant giv at %d, %s\n", + "Failed ext dependent giv at %d, %s\n", INSN_UID (v->insn), why); } v->ignore = 1; |