aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/fortran/ChangeLog4
-rw-r--r--gcc/fortran/trans-array.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 1883288..0431572 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,7 @@
+2007-02-03 Kazu Hirata <kazu@codesourcery.com>
+
+ * trans-array.c: Fix a comment typo.
+
2007-02-03 Paul Thomas <pault@gcc.gnu.org>
PR fortran/30514
diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c
index 529d721..a39f6647 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. */