diff options
author | Steven G. Kargl <kargl@gcc.gnu.org> | 2007-01-07 03:26:06 +0000 |
---|---|---|
committer | Steven G. Kargl <kargl@gcc.gnu.org> | 2007-01-07 03:26:06 +0000 |
commit | b7fdd4ed69ebb0a413c6f4bb29c570c9b97a6e94 (patch) | |
tree | cb2ad89f560842f75d22f5082272c78e4b95e05c /gcc/fortran/array.c | |
parent | 0d6298951bc9c49916e81738a879f82a67ad70a0 (diff) | |
download | gcc-b7fdd4ed69ebb0a413c6f4bb29c570c9b97a6e94.zip gcc-b7fdd4ed69ebb0a413c6f4bb29c570c9b97a6e94.tar.gz gcc-b7fdd4ed69ebb0a413c6f4bb29c570c9b97a6e94.tar.bz2 |
Fix whitespace in a table within a comment.
Fix whitespace in a table within a comment. This is
wonderful example of why tabs are evil.
From-SVN: r120545
Diffstat (limited to 'gcc/fortran/array.c')
-rw-r--r-- | gcc/fortran/array.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/fortran/array.c b/gcc/fortran/array.c index af281f7..76dee50 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. |