diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 18832883b4b..0431572c5a6 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2007-02-03 Kazu Hirata + + * trans-array.c: Fix a comment typo. + 2007-02-03 Paul Thomas PR fortran/30514 diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c index 529d721795e..a39f664758e 100644 --- a/gcc/fortran/trans-array.c +++ b/gcc/fortran/trans-array.c @@ -5288,7 +5288,7 @@ gfc_trans_deferred_array (gfc_symbol * sym, tree body) forall (i=..., j=...) x(i,j) = foo%a(j)%b(i) end forall - This adds a fair amout of complexity because you need to deal with more + This adds a fair amount of complexity because you need to deal with more than one ref. Maybe handle in a similar manner to vector subscripts. Maybe not worth the effort. */