Correct an attribute access example.
authorMartin Sebor <msebor@redhat.com>
Tue, 25 Feb 2020 20:14:56 +0000 (13:14 -0700)
committerMartin Sebor <msebor@redhat.com>
Tue, 25 Feb 2020 20:14:56 +0000 (13:14 -0700)
gcc/ChangeLog:
* doc/extend.texi (attribute access): Correct an example.

gcc/ChangeLog
gcc/doc/extend.texi

index 653c276..0e9c02c 100644 (file)
@@ -1,3 +1,7 @@
+2020-02-25  Martin Sebor  <msebor@redhat.com>
+
+       * doc/extend.texi (attribute access): Correct an example.
+
 2020-02-25  Mihail Ionescu  <mihail.ionescu@arm.com>
 
        * config/aarch64/aarch64-builtins.c (aarch64_scalar_builtin_types):
index b7f462a..007a9a3 100644 (file)
@@ -2526,7 +2526,7 @@ the @code{puts} function, or the second and third arguments to
 the @code{memcpy} function.
 
 @smallexample
-__attribute__ ((access (read_only))) int puts (const char*);
+__attribute__ ((access (read_only, 1))) int puts (const char*);
 __attribute__ ((access (read_only, 1, 2))) void* memcpy (void*, const void*, size_t);
 @end smallexample