diff options
author | Paolo Carlini <pcarlini@suse.de> | 2005-02-25 18:29:28 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2005-02-25 18:29:28 +0000 |
commit | a1e7304632f851686fb67fb5c1d3e89eed1fa163 (patch) | |
tree | fe3b9ad7fedd0bce557319b1c5d2ff8bde3ff7fd | |
parent | 9e38f7028f6f50fd0d0ff240f6bd3ddf8bedab40 (diff) | |
download | gcc-a1e7304632f851686fb67fb5c1d3e89eed1fa163.zip gcc-a1e7304632f851686fb67fb5c1d3e89eed1fa163.tar.gz gcc-a1e7304632f851686fb67fb5c1d3e89eed1fa163.tar.bz2 |
extend.texi (5.24 Declaring Attributes of Functions): Clarify that the alternative way doesn't work in GNU C++.
2005-02-25 Paolo Carlini <pcarlini@suse.de>
* doc/extend.texi (5.24 Declaring Attributes of Functions)<noreturn>:
Clarify that the alternative way doesn't work in GNU C++.
From-SVN: r95542
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 00e185a..578d2b8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-02-25 Paolo Carlini <pcarlini@suse.de> + + * doc/extend.texi (5.24 Declaring Attributes of Functions)<noreturn>: + Clarify that the alternative way doesn't work in GNU C++. + 2005-02-25 Zdenek Dvorak <dvorakz@suse.cz> * tree-ssa-dom.c (simple_iv_increment_p): New function. diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 1267517..c151049 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -2034,6 +2034,8 @@ typedef void voidfn (); volatile voidfn fatal; @end smallexample +This approach does not work in GNU C++. + @item nothrow @cindex @code{nothrow} function attribute The @code{nothrow} attribute is used to inform the compiler that a |