Re: [PATCH] free() was missing from a part of the documentation

2020-04-22 Thread Jeff Law via Gcc-patches
On Tue, 2020-04-21 at 18:18 -0600, Zackery Spytz via Gcc-patches wrote:
> Hello,
> 
> The free() function was missing from a part of the documentation!
Thanks.  I've pushed this fix to the trunk.

jeff
> 



[PATCH] free() was missing from a part of the documentation

2020-04-21 Thread Zackery Spytz via Gcc-patches
Hello,

The free() function was missing from a part of the documentation!

diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 81bb7a47de2..c17b1040bde 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -12315,6 +12315,7 @@ is called and the @var{flag} argument passed to it.
 @findex fprintf_unlocked
 @findex fputs
 @findex fputs_unlocked
+@findex free
 @findex frexp
 @findex frexpf
 @findex frexpl


Zackery


Re: [PATCH] free() was missing from a part of the documentation

2020-04-05 Thread Jeff Law via Gcc-patches
On Thu, 2020-04-02 at 12:29 -0600, Zackery Spytz via Gcc-patches wrote:
> Hello,
> 
> The free() function was missing from a part of the documentation!
THanks for the patch.  I've pushed it to the trunk.
jeff



[PATCH] free() was missing from a part of the documentation

2020-04-02 Thread Zackery Spytz via Gcc-patches
Hello,

The free() function was missing from a part of the documentation!

diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index bde37482b6e..79e2c8cb87f 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -12670,7 +12670,7 @@ The ISO C90 functions
 @code{abort}, @code{abs}, @code{acos}, @code{asin}, @code{atan2},
 @code{atan}, @code{calloc}, @code{ceil}, @code{cosh}, @code{cos},
 @code{exit}, @code{exp}, @code{fabs}, @code{floor}, @code{fmod},
-@code{fprintf}, @code{fputs}, @code{frexp}, @code{fscanf},
+@code{fprintf}, @code{fputs}, @code{free}, @code{frexp}, @code{fscanf},
 @code{isalnum}, @code{isalpha}, @code{iscntrl}, @code{isdigit},
 @code{isgraph}, @code{islower}, @code{isprint}, @code{ispunct},
 @code{isspace}, @code{isupper}, @code{isxdigit}, @code{tolower},


Zackery