diff options
author | Daniel Franke <dfranke@gcc.gnu.org> | 2007-04-30 11:04:56 -0400 |
---|---|---|
committer | Daniel Franke <dfranke@gcc.gnu.org> | 2007-04-30 11:04:56 -0400 |
commit | c4bc65be2cf576f3cc1b0fbfe5a5135ab449ecff (patch) | |
tree | 73223ae9cf4c17721621b502d4214a3fedb5a8aa /gcc | |
parent | d22a31664d59c997f73984327833e4ca0e51c84f (diff) | |
download | gcc-c4bc65be2cf576f3cc1b0fbfe5a5135ab449ecff.zip gcc-c4bc65be2cf576f3cc1b0fbfe5a5135ab449ecff.tar.gz gcc-c4bc65be2cf576f3cc1b0fbfe5a5135ab449ecff.tar.bz2 |
intrinsic.texi (IERRNO): Changed class to non-elemental function.
2007-04-30 Daniel Franke <franke.daniel@gmail.com>
* intrinsic.texi (IERRNO): Changed class to non-elemental function.
(LOG10): Removed COMPLEX as accepted argument type.
(NEW_LINE): Changed class from elemental to inquiry function.
(SIGN): Removed requirement of scalar arguments.
(SNGL): Changed class to elemental function.
From-SVN: r124297
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/fortran/intrinsic.texi | 13 |
2 files changed, 15 insertions, 8 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 208d784..4c1643a 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,4 +1,12 @@ -2007-04-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> +2007-04-30 Daniel Franke <franke.daniel@gmail.com> + + * intrinsic.texi (IERRNO): Changed class to non-elemental function. + (LOG10): Removed COMPLEX as accepted argument type. + (NEW_LINE): Changed class from elemental to inquiry function. + (SIGN): Removed requirement of scalar arguments. + (SNGL): Changed class to elemental function. + +2007-04-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> PR fortran/31591 * simplify.c (simplify_bound_dim): New function. diff --git a/gcc/fortran/intrinsic.texi b/gcc/fortran/intrinsic.texi index b954711..dd91aa8 100644 --- a/gcc/fortran/intrinsic.texi +++ b/gcc/fortran/intrinsic.texi @@ -5109,7 +5109,7 @@ function. GNU extension @item @emph{Class}: -Elemental function +Non-elemental function @item @emph{Syntax}: @code{RESULT = IERRNO()} @@ -6131,8 +6131,7 @@ Elemental function @item @emph{Arguments}: @multitable @columnfractions .15 .70 -@item @var{X} @tab The type shall be @code{REAL(*)} or -@code{COMPLEX(*)}. +@item @var{X} @tab The type shall be @code{REAL(*)}. @end multitable @item @emph{Return value}: @@ -7268,7 +7267,7 @@ end program test_nearest F2003 and later @item @emph{Class}: -Elemental function +Inquiry function @item @emph{Syntax}: @code{RESULT = NEW_LINE(C)} @@ -8665,8 +8664,8 @@ Elemental function @item @emph{Arguments}: @multitable @columnfractions .15 .70 -@item @var{A} @tab Shall be a scalar of type @code{INTEGER} or @code{REAL} -@item @var{B} @tab Shall be a scalar of the same type and kind as @var{A} +@item @var{A} @tab Shall be of type @code{INTEGER} or @code{REAL} +@item @var{B} @tab Shall be of the same type and kind as @var{A} @end multitable @item @emph{Return value}: @@ -8953,7 +8952,7 @@ that is specific to one type for @var{A}. GNU extension @item @emph{Class}: -function +Elemental function @item @emph{Syntax}: @code{RESULT = SNGL(A)} |