diff options
author | Martin Liska <mliska@suse.cz> | 2022-07-14 10:35:42 +0200 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-07-14 10:35:42 +0200 |
commit | b8cae48643f18b4cd8c34c6ac7a4f0cf4cc8a877 (patch) | |
tree | aa5fee340e23c857c988a147eddebf90327ba2e2 | |
parent | 2d4ba09d237b0a96caea98cb4e8a2ceb99d0d538 (diff) | |
parent | fd782def3193d0cd315b5dc9d9c90f469771b7a3 (diff) | |
download | gcc-b8cae48643f18b4cd8c34c6ac7a4f0cf4cc8a877.zip gcc-b8cae48643f18b4cd8c34c6ac7a4f0cf4cc8a877.tar.gz gcc-b8cae48643f18b4cd8c34c6ac7a4f0cf4cc8a877.tar.bz2 |
Merge branch 'master' into devel/sphinx
-rw-r--r-- | gcc/doc/gimple.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doc/gimple.texi b/gcc/doc/gimple.texi index 9150218..7832fa6 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 |