summaryrefslogtreecommitdiffstats
path: root/libclc/generic/lib/cl_khr_int64_extended_atomics/atom_and.cl
blob: 55e5f6e6e23f731351cdad4538b92f2d145f4dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <clc/clc.h>

#ifdef cl_khr_int64_extended_atomics

#define IMPL(AS, TYPE) \
_CLC_OVERLOAD _CLC_DEF TYPE atom_and(volatile AS TYPE *p, TYPE val) { \
  return __sync_fetch_and_and_8(p, val); \
}

IMPL(global, long)
IMPL(global, unsigned long)
IMPL(local, long)
IMPL(local, unsigned long)
#undef IMPL

#endif
OpenPOWER on IntegriCloud