[libc-commits] [libc] [llvm] [libc] Support AMDGPU device interrupts for the RPC interface (PR #188067)
Matt Arsenault via libc-commits
libc-commits at lists.llvm.org
Tue Mar 24 05:34:58 PDT 2026
================
@@ -31,6 +31,10 @@ namespace rpc {
__atomic_fetch_or(src, val, ord)
#define __scoped_atomic_fetch_and(src, val, ord, scp) \
__atomic_fetch_and(src, val, ord)
+#define __scoped_atomic_fetch_add(src, val, ord, scp) \
+ __atomic_fetch_add(src, val, ord)
----------------
arsenm wrote:
Why have these wrappers which discard the scope
https://github.com/llvm/llvm-project/pull/188067
More information about the libc-commits
mailing list