https://gcc.gnu.org/g:384213db9a7163de9980339d7a8b8a7e702e2d72
commit 384213db9a7163de9980339d7a8b8a7e702e2d72 Author: Paul-Antoine Arras <[email protected]> Date: Thu Jun 25 11:26:56 2026 +0200 libgomp.texi: Fix missing @end smallexample arguments libgomp/ChangeLog: * libgomp.texi (Implementing MASKED and MASTER construct): Fix @end smallexample. (Implementing FOR construct): Likewise. (cherry picked from commit a30f87419e4f3aca712849e34f4eb4bda1d39187) Diff: --- libgomp/libgomp.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libgomp/libgomp.texi b/libgomp/libgomp.texi index cb08aa08e2c5..fa76d6f6e80b 100644 --- a/libgomp/libgomp.texi +++ b/libgomp/libgomp.texi @@ -8033,7 +8033,7 @@ queries: @smallexample omp_get_thread_num() == @var{thread_num} -@end +@end smallexample Hereby, @var{thread_num} has the value of the argument to the @code{filter} clause or zero if not specified. @@ -8319,7 +8319,7 @@ For @code{schedule(static)} without @code{ordered}, the compiler uses: @smallexample _Complex int GOMP_loop_static_worksharing (void) -@end +@end smallexample which returns the thread id in the real part and the thread count in the imaginary part as a single value, avoiding separate @code{omp_get_thread_num} / @@ -8329,7 +8329,7 @@ Similarly, for @code{distribute} constructs: @smallexample _Complex int GOMP_distribute_static_worksharing (void) -@end +@end smallexample returns the team id and team count.
