From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by sourceware.org (Postfix) with ESMTPS id 969C93858D32 for ; Tue, 27 Jun 2023 02:32:15 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 969C93858D32 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=marvell.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=marvell.com Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 35R1DWvf017355 for ; Mon, 26 Jun 2023 19:32:15 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=vrQ7SN2kGRJWw4Z5XqEg6DXkiwUbFpanVuyWn3NI4rk=; b=ZXHZEdJhk9fZcBrLCbyHQYK+PN5i6ZCEApgC5g4sqASBkLHDFVfXIVrDidj6pMDPISVr dbRhsyk5pV/Syw7JG5qNI2q7C3TTuAWLobp53c2O25XL63o6YjHE37wj0S2DPQkpbSBE k4ppOQSe2MJaMEA5slpkiJBgq0Qrau0kkxp+KkwzyFHoHhrZ8GoXZr53jyMQSOSNPp9E +pMPkq+XHVk5QyJl6Ys85KxPmteun2H4FMP7NX7OlarM2l9/r2j1ka+qVPdVrSHZqmKC VwsuQ69jvolJ63bssjT5lA6OZdePhyiWnpN0qwCEpQaOTmWax8TgFFRuw6DDHV7SdUPV kw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3re00jxtk8-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 26 Jun 2023 19:32:14 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Mon, 26 Jun 2023 19:32:12 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.48 via Frontend Transport; Mon, 26 Jun 2023 19:32:12 -0700 Received: from vpnclient.wrightpinski.org.com (unknown [10.76.242.112]) by maili.marvell.com (Postfix) with ESMTP id E3E3D3F705E; Mon, 26 Jun 2023 19:32:11 -0700 (PDT) From: Andrew Pinski To: CC: Andrew Pinski Subject: [PATCH] Fix __builtin_alloca_with_align_and_max defbuiltin usage Date: Mon, 26 Jun 2023 19:32:02 -0700 Message-ID: <20230627023202.35018-1-apinski@marvell.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: nu9DwZqcJmNfRUfrnq83jI42f2wEsTG3 X-Proofpoint-ORIG-GUID: nu9DwZqcJmNfRUfrnq83jI42f2wEsTG3 X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.254,Aquarius:18.0.957,Hydra:6.0.591,FMLib:17.11.176.26 definitions=2023-06-26_20,2023-06-26_03,2023-05-22_02 X-Spam-Status: No, score=-14.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: 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 c01cd3fe90c..53a1b12f88a 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -13731,7 +13731,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.31.1