diff options
-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 |