diff options
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/array.c | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 4df2107f5a6..116d4ac7e36 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,5 +1,9 @@ 2007-01-06 Steven G. Kargl <kargl@gcc.gnu.org> + * array.c: Fix whitespace in comment table. + +2007-01-06 Steven G. Kargl <kargl@gcc.gnu.org> + * array.c, bbt.c, check.c: Update copyright years. Whitespace. 2007-01-06 Steven G. Kargl <kargl@gcc.gnu.org> diff --git a/gcc/fortran/array.c b/gcc/fortran/array.c index af281f78c10..76dee508404 100644 --- a/gcc/fortran/array.c +++ b/gcc/fortran/array.c @@ -265,12 +265,12 @@ gfc_resolve_array_spec (gfc_array_spec *as, int check_constant) Parsed Lower Upper Returned ------------------------------------ - : NULL NULL AS_DEFERRED (*) - x 1 x AS_EXPLICIT - x: x NULL AS_ASSUMED_SHAPE - x:y x y AS_EXPLICIT - x:* x NULL AS_ASSUMED_SIZE - * 1 NULL AS_ASSUMED_SIZE + : NULL NULL AS_DEFERRED (*) + x 1 x AS_EXPLICIT + x: x NULL AS_ASSUMED_SHAPE + x:y x y AS_EXPLICIT + x:* x NULL AS_ASSUMED_SIZE + * 1 NULL AS_ASSUMED_SIZE (*) For non-pointer dummy arrays this is AS_ASSUMED_SHAPE. This is fixed during the resolution of formal interfaces. |