[libc-commits] [libc] [llvm] [libc] Support AMDGPU device interrupts for the RPC interface (PR #188067)

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Tue Mar 24 05:36:03 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)
----------------
jhuber6 wrote:

Compatibility with GCC.

https://github.com/llvm/llvm-project/pull/188067


More information about the libc-commits mailing list