diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2023-01-16 09:56:58 +0000 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2023-01-16 10:28:54 +0000 |
commit | dfc5ea6b0ef6ec57790e972f488062e9e18c59cf (patch) | |
tree | d3b431d33f3f674f82f013e7af9cb7b65fae568d /gcc | |
parent | 8da14bd45e9759c55c0b4c744a966b78e16df49a (diff) | |
download | gcc-dfc5ea6b0ef6ec57790e972f488062e9e18c59cf.zip gcc-dfc5ea6b0ef6ec57790e972f488062e9e18c59cf.tar.gz gcc-dfc5ea6b0ef6ec57790e972f488062e9e18c59cf.tar.bz2 |
doc: Fix grammar typo in description of malloc attribute
gcc/ChangeLog:
* doc/extend.texi (Common Function Attributes): Fix grammar.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/doc/extend.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 1103e99..867ef07 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -3383,7 +3383,7 @@ Attribute @code{malloc} indicates that a function is @code{malloc}-like, i.e., that the pointer @var{P} returned by the function cannot alias any other pointer valid when the function returns, and moreover no pointers to valid objects occur in any storage addressed by @var{P}. In -addition, the GCC predicts that a function with the attribute returns +addition, GCC predicts that a function with the attribute returns non-null in most cases. Independently, the form of the attribute with one or two arguments |