aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/aarch64/atomic-op-release.x
blob: 343f09b5264f9a93c4c7ec1439245aaf9e181c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
int v = 0;

int
atomic_fetch_add_RELEASE (int a)
{
  return __atomic_fetch_add (&v, a, __ATOMIC_RELEASE);
}

int
atomic_fetch_sub_RELEASE (int a)
{
  return __atomic_fetch_sub (&v, a, __ATOMIC_RELEASE);
}

int
atomic_fetch_and_RELEASE (int a)
{
  return __atomic_fetch_and (&v, a, __ATOMIC_RELEASE);
}

int
atomic_fetch_nand_RELEASE (int a)
{
  return __atomic_fetch_nand (&v, a, __ATOMIC_RELEASE);
}

int
atomic_fetch_xor_RELEASE (int a)
{
  return __atomic_fetch_xor (&v, a, __ATOMIC_RELEASE);
}

int
atomic_fetch_or_RELEASE (int a)
{
  return __atomic_fetch_or (&v, a, __ATOMIC_RELEASE);
}