diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-05-26 13:00:47 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2007-05-26 13:00:47 +0000 |
commit | 110abdbc6877d03e991d8d2eb03d479db1bab8e2 (patch) | |
tree | bf7ffb2b31635e32954ef15161507e715433586b /gcc/omega.c | |
parent | 4dad0aca146f96888dda601263e31f8621de1bae (diff) | |
download | gcc-110abdbc6877d03e991d8d2eb03d479db1bab8e2.zip gcc-110abdbc6877d03e991d8d2eb03d479db1bab8e2.tar.gz gcc-110abdbc6877d03e991d8d2eb03d479db1bab8e2.tar.bz2 |
i386.c, [...]: Fix comment typos.
* config/i386/i386.c, config/pa/pa.c, config/spu/spu.c,
df-problems.c, df-scan.c, domwalk.c, ebitmap.c, ebitmap.h,
fold-const.c, gcc.c, ipa-type-escape.c, omega.c, omega.h,
tree-ssa-coalesce.c, tree-ssa-live.c, tree-ssa-structalias.c,
tree-vrp.c: Fix comment typos. Follow spelling conventions.
* doc/tm.texi: Follow spelling conventions.
From-SVN: r125090
Diffstat (limited to 'gcc/omega.c')
-rw-r--r-- | gcc/omega.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/omega.c b/gcc/omega.c index 7b69300..900ca85 100644 --- a/gcc/omega.c +++ b/gcc/omega.c @@ -1806,13 +1806,13 @@ cleanout_wildcards (omega_pb pb) for (i = n_vars; !omega_safe_var_p (pb, i); i--) if (pb->eqs[e].coef[i] != 0) { - /* i is the last non-zero non-safe variable. */ + /* i is the last nonzero non-safe variable. */ for (j = i - 1; !omega_safe_var_p (pb, j); j--) if (pb->eqs[e].coef[j] != 0) break; - /* j is the next non-zero non-safe variable, or points + /* j is the next nonzero non-safe variable, or points to a safe variable: it is then a wildcard variable. */ /* Clean it out. */ @@ -3174,9 +3174,9 @@ omega_solve_eq (omega_pb pb, enum omega_result desired_res) if (eqn->coef[j]) break; - /* i is the position of last non-zero coefficient, + /* i is the position of last nonzero coefficient, g is the coefficient of i, - j is the position of next non-zero coefficient. */ + j is the position of next nonzero coefficient. */ if (j == 0) { |