[PATCH] D112400: [clang][compiler-rt][atomics] Add `__c11_atomic_fetch_nand` builtin and support `__atomic_fetch_nand` libcall
James Y Knight via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 27 06:10:15 PDT 2021
jyknight added inline comments.
================
Comment at: compiler-rt/lib/builtins/atomic.c:339
+#define ATOMIC_RMW_NAND(n, lockfree, type) \
+ type __atomic_fetch_nand_##n(type *ptr, type val, int model) { \
----------------
Same as ATOMIC_RMW now, isn't it?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112400/new/
https://reviews.llvm.org/D112400
More information about the llvm-commits
mailing list