diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-10-14 01:48:07 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-10-14 01:48:07 +0000 |
commit | b2a433730c61d185540d8f39929e7f888f32d19d (patch) | |
tree | 83f8d03f33750bad0265712e9db2c184030d6f95 /gcc | |
parent | 0c472e4e469e4f45541a7ae7d8d72ae5ab9acdd4 (diff) | |
download | gcc-b2a433730c61d185540d8f39929e7f888f32d19d.zip gcc-b2a433730c61d185540d8f39929e7f888f32d19d.tar.gz gcc-b2a433730c61d185540d8f39929e7f888f32d19d.tar.bz2 |
intrinsic.texi: Fix typos.
* intrinsic.texi: Fix typos.
* trans-array.c: Fix a comment typo.
From-SVN: r117722
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fortran/intrinsic.texi | 4 | ||||
-rw-r--r-- | gcc/fortran/trans-array.c | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index be6867c..c487767 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2006-10-14 Kazu Hirata <kazu@codesourcery.com> + + * intrinsic.texi: Fix typos. + * trans-array.c: Fix a comment typo. + 2006-10-13 Brooks Moses <bmoses@stanford.edu> * intrinsic.texi (STAT): Reverted a format in example code to diff --git a/gcc/fortran/intrinsic.texi b/gcc/fortran/intrinsic.texi index 4e172fd..55494cf 100644 --- a/gcc/fortran/intrinsic.texi +++ b/gcc/fortran/intrinsic.texi @@ -3895,7 +3895,7 @@ END PROGRAM @end smallexample @item @emph{See also}: -GNU Fortran 77 compability function: @ref{IARGC} +GNU Fortran 77 compatibility function: @ref{IARGC} F2003 functions and subroutines: @ref{GET_COMMAND}, @ref{GET_COMMAND_ARGUMENT}, @ref{COMMAND_ARGUMENT_COUNT} @end table @@ -4466,7 +4466,7 @@ The number of command line arguments, type @code{INTEGER(4)}. See @ref{GETARG} @item @emph{See also}: -GNU Fortran 77 compability subroutine: @ref{GETARG} +GNU Fortran 77 compatibility subroutine: @ref{GETARG} F2003 functions and subroutines: @ref{GET_COMMAND}, @ref{GET_COMMAND_ARGUMENT}, @ref{COMMAND_ARGUMENT_COUNT} @end table diff --git a/gcc/fortran/trans-array.c b/gcc/fortran/trans-array.c index f4d7ba5..ba07f02 100644 --- a/gcc/fortran/trans-array.c +++ b/gcc/fortran/trans-array.c @@ -4968,7 +4968,7 @@ gfc_trans_deferred_array (gfc_symbol * sym, tree body) gfc_set_backend_locus (&sym->declared_at); descriptor = sym->backend_decl; - /* Although static, derived types with deafult initializers and + /* Although static, derived types with default initializers and allocatable components must not be nulled wholesale; instead they are treated component by component. */ if (TREE_STATIC (descriptor) && !sym_has_alloc_comp) |