From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 8BBEA38582BE for ; Thu, 14 Jul 2022 08:37:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 8BBEA38582BE Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 5619620801 for ; Thu, 14 Jul 2022 08:37:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1657787849; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=EUmOSKFoLgM74zSgj5Jok/TzmDs6+c52C21H9nWRY94=; b=Q33xkwyZC4IbJ9jpklKLMdQQZrH8Bp5f8AQLaYuA4uWqyDphfTyafGhbzF7zJQ7YmeiVkW eDHHF77UwUYJ1ZdainOAfxgDoXczdqKdghb95CznniIALYmHnMdcAjl9a2TG78EFgUljZA /5QcCmswSH1n78eYxVg/fz6lv1ejaL0= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1657787849; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=EUmOSKFoLgM74zSgj5Jok/TzmDs6+c52C21H9nWRY94=; b=qJICHDlARRTFpLYNub3qJj7KL3yIJvHCaGk8pm415KCp5vTaC1KOwoUG6rWBQEsifRJHpS TTiv26jrsc/WCtBQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 46ADD13A61 for ; Thu, 14 Jul 2022 08:37:29 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id p25PD8nVz2KqEwAAMHmgww (envelope-from ) for ; Thu, 14 Jul 2022 08:37:29 +0000 Message-ID: <104f1089-d704-6585-8333-6e48f7d20cba@suse.cz> Date: Thu, 14 Jul 2022 10:37:28 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH part2][PUSHED] docs: fix position of @end deftypefn To: gcc-patches@gcc.gnu.org Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, 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 X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2022 08:37:31 -0000 gcc/ChangeLog: * doc/gimple.texi: Close properly a deftypefn. --- gcc/doc/gimple.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/doc/gimple.texi b/gcc/doc/gimple.texi index 9150218fed8..7832fa6ff90 100644 --- a/gcc/doc/gimple.texi +++ b/gcc/doc/gimple.texi @@ -1977,12 +1977,12 @@ executed in sequence. @deftypefn {GIMPLE function} gomp_parallel *gimple_build_omp_parallel (@ gimple_seq body, tree clauses, tree child_fn, tree data_arg) Build a @code{GIMPLE_OMP_PARALLEL} statement. -@end deftypefn @code{BODY} is sequence of statements which are executed in parallel. @code{CLAUSES}, are the @code{OMP} parallel construct's clauses. @code{CHILD_FN} is the function created for the parallel threads to execute. @code{DATA_ARG} are the shared data argument(s). +@end deftypefn @deftypefn {GIMPLE function} bool gimple_omp_parallel_combined_p (gimple g) Return true if @code{OMP} parallel statement @code{G} has the @@ -2076,9 +2076,9 @@ Return true if @code{OMP} return statement @code{G} has the @deftypefn {GIMPLE function} gimple gimple_build_omp_section (gimple_seq body) Build a @code{GIMPLE_OMP_SECTION} statement for a sections statement. -@end deftypefn @code{BODY} is the sequence of statements in the section. +@end deftypefn @deftypefn {GIMPLE function} bool gimple_omp_section_last_p (gimple g) Return true if @code{OMP} section statement @code{G} has the -- 2.37.0