diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-14 12:37:28 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-14 12:37:28 +0000 |
commit | 13795658b50234d99cf2b671214000131b132952 (patch) | |
tree | 86ce1a2225fed2b523fd783f41a07ab8fd9cee98 /gcc/fortran/trans-stmt.c | |
parent | 98ddffc1c10f62fca6e92b358b0a6d4398add660 (diff) | |
download | gcc-13795658b50234d99cf2b671214000131b132952.zip gcc-13795658b50234d99cf2b671214000131b132952.tar.gz gcc-13795658b50234d99cf2b671214000131b132952.tar.bz2 |
data.c, [...]: Fix comment typos.
* data.c, decl.c, f95-lang.c, gfortran.h, match.c,
trans-array.c, trans-common.c, trans-expr.c,
trans-intrinsic.c, trans-stmt.c, trans-types.c, trans.h: Fix
comment typos. Follow spelling conventions.
From-SVN: r87492
Diffstat (limited to 'gcc/fortran/trans-stmt.c')
-rw-r--r-- | gcc/fortran/trans-stmt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/trans-stmt.c b/gcc/fortran/trans-stmt.c index 7c63c99..2407dcf 100644 --- a/gcc/fortran/trans-stmt.c +++ b/gcc/fortran/trans-stmt.c @@ -524,7 +524,7 @@ exit_label: TODO: Large loop counts Does not work loop counts which do not fit into a signed integer kind, - ie. Does not work for loop counts > 2^31 for integer(kind=4) variables + i.e. Does not work for loop counts > 2^31 for integer(kind=4) variables We must support the full range. */ tree @@ -1286,9 +1286,9 @@ gfc_trans_forall_loop (forall_info *forall_tmp, int nvar, tree body, int mask_fl /* Generate the body and loops according to MASK_FLAG and NEST_FLAG. - if MASK_FLAG is non-zero, the body is controlled by maskes in forall + if MASK_FLAG is nonzero, the body is controlled by maskes in forall nest, otherwise, the body is not controlled by maskes. - if NEST_FLAG is non-zero, generate loops for nested forall, otherwise, + if NEST_FLAG is nonzero, generate loops for nested forall, otherwise, only generate loops for the current forall level. */ static tree |