diff options
author | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-26 14:21:36 +0000 |
---|---|---|
committer | aj <aj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-26 14:21:36 +0000 |
commit | 9de464a77de8b5ab8428ed269a853396d2d31fd0 (patch) | |
tree | f5d1622f327143017aecc300623f2547f99725d1 /gcc/extend.texi | |
parent | 6a7a52b3c9c6256100e73869682ab12b263ac5fa (diff) | |
download | gcc-9de464a77de8b5ab8428ed269a853396d2d31fd0.tar.gz |
2000-04-26 Andreas Jaeger <aj@suse.de>
* extend.texi (Function Attributes): Fix description of pure
attribute.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33445 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/extend.texi')
-rw-r--r-- | gcc/extend.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/extend.texi b/gcc/extend.texi index 6d310ae0ca5..c3e26484a80 100644 --- a/gcc/extend.texi +++ b/gcc/extend.texi @@ -1382,7 +1382,7 @@ volatile voidfn fatal; @cindex @code{pure} function attribute @item pure Many functions have no effects except the return value and their -return value and depends only on the parameters and/or global variables. +return value depends only on the parameters and/or global variables. Such a function can be subject to common subexpression elimination and loop optimization just as an arithmetic operator would be. These functions should be declared |