diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-16 16:00:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-16 16:00:45 +0000 |
commit | 1f2959f06e9093dfc6e717e0839988046883b8bb (patch) | |
tree | d4390e21373fcfa884178f5708c587e4da66100a /gcc/fortran/resolve.c | |
parent | d1f05f931e1689f7a0811acc39379831d40dcea9 (diff) | |
download | gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.zip gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.tar.gz gcc-1f2959f06e9093dfc6e717e0839988046883b8bb.tar.bz2 |
array.c, [...]: Fix comment typos.
* array.c, data.c, decl.c, dependency.c, error.c, f95-lang.c,
interface.c, intrinsic.c, io.c, misc.c, module.c, parse.h,
resolve.c, scanner.c, trans-array.c, trans-array.h,
trans-common.c, trans-const.h, trans-decl.c, trans-expr.c,
trans-intrinsic.c, trans-stmt.c, trans-types.c, trans.c,
trans.h: Fix comment typos. Follow spelling conventions.
From-SVN: r87605
Diffstat (limited to 'gcc/fortran/resolve.c')
-rw-r--r-- | gcc/fortran/resolve.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c index ec808a3..5169f5e 100644 --- a/gcc/fortran/resolve.c +++ b/gcc/fortran/resolve.c @@ -2735,7 +2735,7 @@ validate_case_label_expr (gfc_expr * e, gfc_expr * case_expr) because they are illegal and we never even try to generate code. We have the additional caveat that a SELECT construct could have - been a computed GOTO in the source code. Furtunately we can fairly + been a computed GOTO in the source code. Fortunately we can fairly easily work around that here: The case_expr for a "real" SELECT CASE is in code->expr1, but for a computed GOTO it is in code->expr2. All we have to do is make sure that the case_expr is a scalar integer @@ -4160,7 +4160,7 @@ check_data_variable (gfc_data_variable * var, locus * where) } gcc_assert (ref); - /* Set marks asscording to the reference pattern. */ + /* Set marks according to the reference pattern. */ switch (ref->u.ar.type) { case AR_FULL: |