[multiple changes]

2005-08-27  Erik Edelmann  <erik.edelmann@iki.fi>

	* trans-array.c (gfc_trans_deferred_array): Fix comments.

2005-08-27  Erik Schnetter  <schnetter@aei.mpg.de>

	* primary.c (match_charkind_name): Fix typo in comment leading to
	function.

From-SVN: r103558
This commit is contained in:
Tobias Schlüter 2005-08-27 13:28:51 +02:00
parent 0cd6c85a31
commit 4f8ea09e0b
3 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,12 @@
2005-08-27 Erik Edelmann <erik.edelmann@iki.fi>
* trans-array.c (gfc_trans_deferred_array): Fix comments.
2005-08-27 Erik Schnetter <schnetter@aei.mpg.de>
* primary.c (match_charkind_name): Fix typo in comment leading to
function.
2005-08-25 Erik Edelmann <eedelman@acclab.helsinki.fi>
PR fortran/20363

View file

@ -760,7 +760,7 @@ next_string_char (char delimiter)
/* Special case of gfc_match_name() that matches a parameter kind name
before a string constant. This takes case of the weird but legal
case of: weird case of:
case of:
kind_____'string'

View file

@ -3982,7 +3982,7 @@ gfc_conv_array_parameter (gfc_se * se, gfc_expr * expr, gfc_ss * ss, int g77)
}
/* NULLIFY an allocated/pointer array on function entry, free it on exit. */
/* NULLIFY an allocatable/pointer array on function entry, free it on exit. */
tree
gfc_trans_deferred_array (gfc_symbol * sym, tree body)
@ -4007,7 +4007,7 @@ gfc_trans_deferred_array (gfc_symbol * sym, tree body)
&& !INTEGER_CST_P (sym->ts.cl->backend_decl))
gfc_trans_init_string_length (sym->ts.cl, &fnblock);
/* Parameter and use associated variables don't need anything special. */
/* Dummy and use associated variables don't need anything special. */
if (sym->attr.dummy || sym->attr.use_assoc)
{
gfc_add_expr_to_block (&fnblock, body);