diff options
author | Andrew Pinski <apinski@marvell.com> | 2023-06-27 02:30:06 +0000 |
---|---|---|
committer | Andrew Pinski <apinski@marvell.com> | 2023-06-27 02:33:26 +0000 |
commit | fb909bc101f2dc7453e0ed187933e39acbab1b21 (patch) | |
tree | 18cac65724ce993965bdc03b8a1745b24a98bed8 /gcc | |
parent | 267e1feaf63fc2d8c82054023e08dcbc33eb84e8 (diff) | |
download | gcc-fb909bc101f2dc7453e0ed187933e39acbab1b21.zip gcc-fb909bc101f2dc7453e0ed187933e39acbab1b21.tar.gz gcc-fb909bc101f2dc7453e0ed187933e39acbab1b21.tar.bz2 |
Fix __builtin_alloca_with_align_and_max defbuiltin usage
There is a missing space between the return type and the name
which causes the name not to be outputted in the html docs.
Committed as obvious after building html docs.
gcc/ChangeLog:
* doc/extend.texi (__builtin_alloca_with_align_and_max): Fix
defbuiltin usage.
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 05afd9a..ad8db18 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -13734,7 +13734,7 @@ an extension. @xref{Variable Length}, for details. @enddefbuiltin -@defbuiltin{{void *}__builtin_alloca_with_align_and_max (size_t size, size_t alignment, size_t max_size)} +@defbuiltin{{void *} __builtin_alloca_with_align_and_max (size_t size, size_t alignment, size_t max_size)} Similar to @code{__builtin_alloca_with_align} but takes an extra argument specifying an upper bound for @var{size} in case its value cannot be computed at compile time, for use by @option{-fstack-usage}, @option{-Wstack-usage} |