trans-stmt.c (gfc_trans_forall_1): Fix comment typo.

2005-05-13  Paul Brook  <paul@codesourcery.com>

	* trans-stmt.c (gfc_trans_forall_1): Fix comment typo.

From-SVN: r99660
This commit is contained in:
Paul Brook 2005-05-13 14:34:29 +00:00 committed by Paul Brook
parent 9da5888429
commit cafa34aa46
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-05-13 Paul Brook <paul@codesourcery.com>
* trans-stmt.c (gfc_trans_forall_1): Fix comment typo.
2005-05-12 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
* trans-types.c (gfc_is_nodesc_array): Remove redundant check.

View File

@ -2214,7 +2214,7 @@ gfc_trans_pointer_assign_need_temp (gfc_expr * expr1, gfc_expr * expr2,
for (i = start; i <= end; i += stride)
{
if (masktmp[maskindex++])
e<i> = f<i>
g<i> = h<i>
}
Note that this code only works when there are no dependencies.