diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2023-04-28 09:23:18 +0200 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2023-04-28 09:23:18 +0200 |
commit | 7ebd4a1d61993c0a75e9ff3098aded21ef04a4da (patch) | |
tree | d641ff976f89796d8dce005d9e24c81b03fbbadd /gcc/fortran/dependency.cc | |
parent | ba39d2be0bab29cfb68cdb845b98353d11442244 (diff) | |
download | gcc-7ebd4a1d61993c0a75e9ff3098aded21ef04a4da.zip gcc-7ebd4a1d61993c0a75e9ff3098aded21ef04a4da.tar.gz gcc-7ebd4a1d61993c0a75e9ff3098aded21ef04a4da.tar.bz2 |
Fortran: Fix (mostly) comment typos
Only other changes are fixing the variable name a(b)breviated_modproc_decl
and a few typos in gfortran.texi.
gcc/fortran/ChangeLog:
* gfortran.texi: Fix typos.
* decl.cc: Fix typos in comments and in a variable name.
* arith.cc: Fix comment typos.
* check.cc: Likewise.
* class.cc: Likewise.
* dependency.cc: Likewise.
* expr.cc: Likewise.
* frontend-passes.cc: Likewise.
* gfortran.h: Likewise.
* intrinsic.cc: Likewise.
* iresolve.cc: Likewise.
* match.cc: Likewise.
* module.cc: Likewise.
* primary.cc: Likewise.
* resolve.cc: Likewise.
* simplify.cc: Likewise.
* trans-array.cc: Likewise.
* trans-decl.cc: Likewise.
* trans-expr.cc: Likewise.
* trans-intrinsic.cc: Likewise.
* trans-openmp.cc: Likewise.
* trans-stmt.cc: Likewise.
Diffstat (limited to 'gcc/fortran/dependency.cc')
-rw-r--r-- | gcc/fortran/dependency.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/dependency.cc b/gcc/fortran/dependency.cc index 9117825..a648d5c 100644 --- a/gcc/fortran/dependency.cc +++ b/gcc/fortran/dependency.cc @@ -543,7 +543,7 @@ gfc_dep_difference (gfc_expr *e1, gfc_expr *e2, mpz_t *result) e1 = gfc_discard_nops (e1); e2 = gfc_discard_nops (e2); - /* Inizialize tentatively, clear if we don't return anything. */ + /* Initialize tentatively, clear if we don't return anything. */ mpz_init (*result); /* Case 1: c1 - c2 = c1 - c2, trivially. */ |