diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-09-10 00:43:53 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2004-09-10 00:43:53 +0200 |
commit | 3f3174b6bcf9c2ae6711065352a3da2e5af1bb7e (patch) | |
tree | d65eed162712cac1888aadd4644787461a638be7 /gcc/doc | |
parent | 4c80d5ac5c69cbef1964d1af1929fffd291bb875 (diff) | |
download | gcc-3f3174b6bcf9c2ae6711065352a3da2e5af1bb7e.zip gcc-3f3174b6bcf9c2ae6711065352a3da2e5af1bb7e.tar.gz gcc-3f3174b6bcf9c2ae6711065352a3da2e5af1bb7e.tar.bz2 |
extend.texi (nothrow attribute): The attribute is not implemented in 3.2 and earlier.
* doc/extend.texi (nothrow attribute): The attribute is not
implemented in 3.2 and earlier.
From-SVN: r87258
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/extend.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index bbde788..a511101 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -2039,7 +2039,7 @@ function cannot throw an exception. For example, most functions in the standard C library can be guaranteed not to throw an exception with the notable exceptions of @code{qsort} and @code{bsearch} that take function pointer arguments. The @code{nothrow} attribute is not -implemented in GCC versions earlier than 3.2. +implemented in GCC versions earlier than 3.3. @item pure @cindex @code{pure} function attribute |