]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/doc/gccint/gimple/tuple-specific-accessors/gimpleompreturn.rst
sphinx: add missing trailing newline
[thirdparty/gcc.git] / gcc / doc / gccint / gimple / tuple-specific-accessors / gimpleompreturn.rst
CommitLineData
c63539ff
ML
1..
2 Copyright 1988-2022 Free Software Foundation, Inc.
3 This is part of the GCC manual.
4 For copying conditions, see the copyright.rst file.
5
6.. index:: GIMPLE_OMP_RETURN
7
8GIMPLE_OMP_RETURN
9^^^^^^^^^^^^^^^^^
10
11.. function:: gimple gimple_build_omp_return (bool wait_p)
12
13 Build a ``GIMPLE_OMP_RETURN`` statement. ``WAIT_P`` is true if this is a
14 non-waiting return.
15
16.. function:: void gimple_omp_return_set_nowait (gimple s)
17
18 Set the nowait flag on ``GIMPLE_OMP_RETURN`` statement ``S``.
19
20.. function:: bool gimple_omp_return_nowait_p (gimple g)
21
22 Return true if ``OMP`` return statement ``G`` has the
3ed1b4ce 23 ``GF_OMP_RETURN_NOWAIT`` flag set.