]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/doc/gccint/gimple/tuple-specific-accessors/gimpleompatomicstore.rst
sphinx: add missing trailing newline
[thirdparty/gcc.git] / gcc / doc / gccint / gimple / tuple-specific-accessors / gimpleompatomicstore.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_ATOMIC_STORE
7
8GIMPLE_OMP_ATOMIC_STORE
9^^^^^^^^^^^^^^^^^^^^^^^
10
11.. function:: gomp_atomic_store *gimple_build_omp_atomic_store ( tree val)
12
13 Build a ``GIMPLE_OMP_ATOMIC_STORE`` statement. ``VAL`` is the value to be
14 stored.
15
16.. function:: void gimple_omp_atomic_store_set_val ( gomp_atomic_store *g, tree val)
17
18 Set the value being stored in an atomic store.
19
20.. function:: tree gimple_omp_atomic_store_val ( const gomp_atomic_store *g)
21
3ed1b4ce 22 Return the value being stored in an atomic store.