diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-05 15:24:15 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-05 15:24:15 +0000 |
commit | 2a7e31df70cf600dfaa401cb426578994739bce0 (patch) | |
tree | db2d4b4b49c75785725db3dc511e5abdabfec0c9 /gcc/modulo-sched.c | |
parent | 2addf92620c2d652f72c4cb204fb46d980e784e5 (diff) | |
download | gcc-2a7e31df70cf600dfaa401cb426578994739bce0.zip gcc-2a7e31df70cf600dfaa401cb426578994739bce0.tar.gz gcc-2a7e31df70cf600dfaa401cb426578994739bce0.tar.bz2 |
c-common.c, [...]: Fix comment typos.
* c-common.c, cfgexpand.c, cgraphunit.c, defaults.h,
et-forest.c, expr.c, gimplify.c, global.c, gthr-lynx.h,
hard-reg-set.h, modulo-sched.c, optabs.c, postreload-gcse.c,
tree-data-ref.c, tree-flow.h, tree-if-conv.c, tree-inline.c,
tree-sra.c, tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c,
tree-ssa-loop-niter.c, tree-ssa-operands.c,
tree-ssa-operands.h, tree-ssa-propagate.c,
tree-ssa-propagate.h, tree-ssa-threadupdate.c, value-prof.c,
vec.c, vec.h: Fix comment typos. Follow spelling conventions.
From-SVN: r87104
Diffstat (limited to 'gcc/modulo-sched.c')
-rw-r--r-- | gcc/modulo-sched.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/modulo-sched.c b/gcc/modulo-sched.c index c7606d8..1207c31 100644 --- a/gcc/modulo-sched.c +++ b/gcc/modulo-sched.c @@ -1938,7 +1938,7 @@ ps_insn_find_column (partial_schedule_ptr ps, ps_insn_ptr ps_i, row = SMODULO (ps_i->cycle, ps->ii); /* Find the first must follow and the last must precede - and insert the node immediatly after the must precede + and insert the node immediately after the must precede but make sure that it there is no must follow after it. */ for (next_ps_i = ps->rows[row]; next_ps_i; @@ -2007,7 +2007,7 @@ ps_insn_advance_column (partial_schedule_ptr ps, ps_insn_ptr ps_i, if (TEST_BIT (must_follow, next_node->cuid)) return false; - /* Advace PS_I over its next_in_row in the doubly linked list. */ + /* Advance PS_I over its next_in_row in the doubly linked list. */ prev = ps_i->prev_in_row; next = ps_i->next_in_row; |