aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/aarch64/atomic-comp-swap-release-acquire.x
blob: 4403afd64558a2073678f72ac996d26361ea9b93 (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

#define STRONG 0
#define WEAK 1
int v = 0;

int
atomic_compare_exchange_STRONG_RELEASE_ACQUIRE (int a, int b)
{
  return __atomic_compare_exchange (&v, &a, &b,
				    STRONG, __ATOMIC_RELEASE,
				    __ATOMIC_ACQUIRE);
}

int
atomic_compare_exchange_WEAK_RELEASE_ACQUIRE (int a, int b)
{
  return __atomic_compare_exchange (&v, &a, &b,
				    WEAK, __ATOMIC_RELEASE,
				    __ATOMIC_ACQUIRE);
}

int
atomic_compare_exchange_n_STRONG_RELEASE_ACQUIRE (int a, int b)
{
  return __atomic_compare_exchange_n (&v, &a, b,
				      STRONG, __ATOMIC_RELEASE,
				      __ATOMIC_ACQUIRE);
}

int
atomic_compare_exchange_n_WEAK_RELEASE_ACQUIRE (int a, int b)
{
  return __atomic_compare_exchange_n (&v, &a, b,
				      WEAK, __ATOMIC_RELEASE,
				      __ATOMIC_ACQUIRE);
}