]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/doc/gccint/gimple/tuple-specific-accessors/gimpleompatomicstore.rst
43d91e8fda7e89e1ffeeabfa198361a509a0bcdf
[thirdparty/gcc.git] / gcc / doc / gccint / gimple / tuple-specific-accessors / gimpleompatomicstore.rst
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
8 GIMPLE_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
22 Return the value being stored in an atomic store.