aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2005-02-20 19:16:10 +0000
committerHans-Peter Nilsson <hp@gcc.gnu.org>2005-02-20 19:16:10 +0000
commit50c177f74466e46e2048d30c18856f9e6f9a4d2e (patch)
treedbbeaae0f0e27e16a9c83b03acca478dd530d2dd /gcc
parent687fcae70cd9ae3ef90dc838738ed5ccca46591d (diff)
downloadgcc-50c177f74466e46e2048d30c18856f9e6f9a4d2e.zip
gcc-50c177f74466e46e2048d30c18856f9e6f9a4d2e.tar.gz
gcc-50c177f74466e46e2048d30c18856f9e6f9a4d2e.tar.bz2
extend.texi (Function Attributes): The attribute "pure" is below this text, not above.
* doc/extend.texi (Function Attributes) <Attribute const>: The attribute "pure" is below this text, not above. From-SVN: r95308
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/extend.texi2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fc2ef71..7ccb4af 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-20 Hans-Peter Nilsson <hp@axis.com>
+
+ * doc/extend.texi (Function Attributes) <Attribute const>: The
+ attribute "pure" is below this text, not above.
+
2005-02-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* pa.c (pa_assemble_integer, get_plabel): Small cleanups.
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 7e4d66a..1267517 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -1549,7 +1549,7 @@ useful to override the effects of the @option{-mrtd} switch.
@cindex @code{const} function attribute
Many functions do not examine any values except their arguments, and
have no effects except the return value. Basically this is just slightly
-more strict class than the @code{pure} attribute above, since function is not
+more strict class than the @code{pure} attribute below, since function is not
allowed to read global memory.
@cindex pointer arguments