diff options
author | Tobias Burnus <burnus@net-b.de> | 2012-07-25 20:04:25 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2012-07-25 20:04:25 +0200 |
commit | 62732c3044c767f4efcff0cd398c9e65ba437bda (patch) | |
tree | 5d90e21c8b787ed56f0d76ce9e6828d99aa12263 /gcc/fortran/parse.c | |
parent | a35c9beff6490bacf35d5aa12ad345e056206290 (diff) | |
download | gcc-62732c3044c767f4efcff0cd398c9e65ba437bda.zip gcc-62732c3044c767f4efcff0cd398c9e65ba437bda.tar.gz gcc-62732c3044c767f4efcff0cd398c9e65ba437bda.tar.bz2 |
trans-types.c (gfc_real16_is_float128): Fix spelling in a comment.
2012-07-25 Tobias Burnus <burnus@net-b.de>
* trans-types.c (gfc_real16_is_float128): Fix spelling
in a comment.
* trans.h (struct gfc_array_info): Ditto.
* gfortran.h (gfc_expr): Ditto.
* simplify.c (gfc_count): Ditto.
* trans-expr.c (gfc_copy_class_to_class,
conv_parent_component_references,
gfc_trans_pointer_assignment): Ditto.
* expr.c (check_pointer_assign): Fix diagnostic spelling.
* interface.c (compare_parameter): Ditto.
* parse.c (use_modules, parse_associate): Ditto.
* decl.c (match_char_length): Fix spelling of the
an function argument.
From-SVN: r189859
Diffstat (limited to 'gcc/fortran/parse.c')
-rw-r--r-- | gcc/fortran/parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/parse.c b/gcc/fortran/parse.c index a5d0f85..ecda163 100644 --- a/gcc/fortran/parse.c +++ b/gcc/fortran/parse.c @@ -76,7 +76,7 @@ match_word (const char *str, match (*subr) (void), locus *old_locus) } -/* Load symbols from all USE statements encounted in this scoping unit. */ +/* Load symbols from all USE statements encountered in this scoping unit. */ static void use_modules (void) @@ -3268,7 +3268,7 @@ parse_critical_block (void) if (s.ext.end_do_label != NULL && s.ext.end_do_label != gfc_statement_label) gfc_error_now ("Statement label in END CRITICAL at %C does not " - "match CRITIAL label"); + "match CRITICAL label"); if (gfc_statement_label != NULL) { @@ -3393,7 +3393,7 @@ parse_associate (void) however, as it may only be set on the target during resolution. Still, sometimes it helps to have it right now -- especially for parsing component references on the associate-name - in case of assication to a derived-type. */ + in case of association to a derived-type. */ sym->ts = a->target->ts; } |