diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2022-03-07 17:20:52 +0100 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2022-03-07 17:20:52 +0100 |
commit | e3ca3e7993696affe95a3ea24c2b133c14a056e4 (patch) | |
tree | 4f61d79979da599849628008060ac91480ad4d87 /gcc/fortran/resolve.cc | |
parent | a86ca83a1b1817457837540e0bc8dd26db75407c (diff) | |
download | gcc-e3ca3e7993696affe95a3ea24c2b133c14a056e4.zip gcc-e3ca3e7993696affe95a3ea24c2b133c14a056e4.tar.gz gcc-e3ca3e7993696affe95a3ea24c2b133c14a056e4.tar.bz2 |
Fortran: Fix typos
gcc/fortran/ChangeLog:
* array.cc (gfc_ref_dimen_size): Fix comment typo.
* dump-parse-tree.cc (gfc_dump_c_prototypes): Likewise.
* frontend-passes.cc (cfe_code): Likewise.
* gfortran.texi: Likewise.
* resolve.cc (generate_component_assignments): Likewise.
* simplify.cc (gfc_simplify_this_image): Likewise.
* trans-expr.cc (trans_scalar_class_assign,
gfc_maybe_dereference_var): Likewise.
* intrinsic.texi: Remove word duplication.
* invoke.texi: Likewise.
Diffstat (limited to 'gcc/fortran/resolve.cc')
-rw-r--r-- | gcc/fortran/resolve.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/resolve.cc b/gcc/fortran/resolve.cc index 0afa5d3..0b55961 100644 --- a/gcc/fortran/resolve.cc +++ b/gcc/fortran/resolve.cc @@ -11539,7 +11539,7 @@ generate_component_assignments (gfc_code **code, gfc_namespace *ns) || comp1->attr.proc_pointer) continue; - /* Make an assigment for this component. */ + /* Make an assignment for this component. */ this_code = build_assignment (EXEC_ASSIGN, (*code)->expr1, (*code)->expr2, comp1, comp2, (*code)->loc); |