From fb909bc101f2dc7453e0ed187933e39acbab1b21 Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Tue, 27 Jun 2023 02:30:06 +0000 Subject: [PATCH] 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. --- gcc/doc/extend.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 05afd9ae3d9e..ad8db18b4774 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} -- 2.47.2