diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-07-23 13:39:41 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2013-07-23 13:39:41 +0200 |
commit | 6bd2c800d55cf42bb9adf4466136bf10e88cb6ca (patch) | |
tree | 1912c97f55f5dad8444c17bddaef412044b7604d /gcc | |
parent | d7172355ef66f85961bc9908372b48e285a3fd48 (diff) | |
download | gcc-6bd2c800d55cf42bb9adf4466136bf10e88cb6ca.zip gcc-6bd2c800d55cf42bb9adf4466136bf10e88cb6ca.tar.gz gcc-6bd2c800d55cf42bb9adf4466136bf10e88cb6ca.tar.bz2 |
decl.c: Fix comment typos.
2013-07-23 Ondřej Bílka <neleai@seznam.cz>
* decl.c: Fix comment typos.
* interface.c: Likewise.
* trans-array.c: Likewise.
* trans.c: Likewise.
From-SVN: r201162
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/fortran/decl.c | 2 | ||||
-rw-r--r-- | gcc/fortran/interface.c | 4 | ||||
-rw-r--r-- | gcc/fortran/trans-array.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans.c | 2 |
5 files changed, 13 insertions, 6 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index c531d03..0de32dd 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,10 @@ +2013-07-23 Ondřej Bílka <neleai@seznam.cz> + + * decl.c: Fix comment typos. + * interface.c: Likewise. + * trans-array.c: Likewise. + * trans.c: Likewise. + 2013-07-22 Tobias Burnus <burnus@net-b.de> PR fortran/57906 @@ -20,7 +27,7 @@ * trans-array.c (gfc_array_allocate, gfc_trans_deferred_array): Plug memory leak. -2013-07-21 Ondřej Bílka <neleai@seznam.cz> +2013-07-21 Ondřej Bílka <neleai@seznam.cz> * trans-decl.c: Fix comment typos. * trans-expr.c: Ditto. diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c index f1aa31e..1525119 100644 --- a/gcc/fortran/decl.c +++ b/gcc/fortran/decl.c @@ -8255,7 +8255,7 @@ match_procedure_in_type (void) } /* See if we already have a binding with this name in the symtree which - would be an error. If a GENERIC already targetted this binding, it may + would be an error. If a GENERIC already targeted this binding, it may be already there but then typebound is still NULL. */ stree = gfc_find_symtree (ns->tb_sym_root, name); if (stree && stree->n.tb) diff --git a/gcc/fortran/interface.c b/gcc/fortran/interface.c index f06ecfe..8d31d1c 100644 --- a/gcc/fortran/interface.c +++ b/gcc/fortran/interface.c @@ -3170,7 +3170,7 @@ gfc_procedure_use (gfc_symbol *sym, gfc_actual_arglist **ap, locus *where) gfc_formal_arglist *dummy_args; /* Warn about calls with an implicit interface. Special case - for calling a ISO_C_BINDING becase c_loc and c_funloc + for calling a ISO_C_BINDING because c_loc and c_funloc are pseudo-unknown. Additionally, warn about procedures not explicitly declared at all if requested. */ if (sym->attr.if_source == IFSRC_UNKNOWN && ! sym->attr.is_iso_c) @@ -3287,7 +3287,7 @@ void gfc_ppc_use (gfc_component *comp, gfc_actual_arglist **ap, locus *where) { /* Warn about calls with an implicit interface. Special case - for calling a ISO_C_BINDING becase c_loc and c_funloc + for calling a ISO_C_BINDING because c_loc and c_funloc are pseudo-unknown. */ if (gfc_option.warn_implicit_interface && comp->attr.if_source == IFSRC_UNKNOWN diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c index 0aac678..c269ea8 100644 --- a/gcc/fortran/trans-array.c +++ b/gcc/fortran/trans-array.c @@ -994,7 +994,7 @@ get_array_ref_dim_for_loop_dim (gfc_ss *ss, int loop_dim) 'eltype' == NULL signals that the temporary should be a class object. The 'initial' expression is used to obtain the size of the dynamic - type; otherwise the allocation and initialisation proceeds as for any + type; otherwise the allocation and initialization proceeds as for any other expression PRE, POST, INITIAL, DYNAMIC and DEALLOC are as for diff --git a/gcc/fortran/trans.c b/gcc/fortran/trans.c index 53a0669..b7863b2 100644 --- a/gcc/fortran/trans.c +++ b/gcc/fortran/trans.c @@ -1568,7 +1568,7 @@ gfc_set_backend_locus (locus * loc) } -/* Restore the saved locus. Only used in conjonction with +/* Restore the saved locus. Only used in conjunction with gfc_save_backend_locus, to free the memory when we are done. */ void |