[llvm] [OpenMP] Update atomic helpers to just use headers (PR #122185)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 8 14:56:43 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 29b5c18e466cea867e9e785e650d9ec2e5c295b9 1ad93bf35eb0c9ba8cf215bea9251ef185f24414 --extensions h,cpp -- offload/DeviceRTL/include/DeviceUtils.h offload/DeviceRTL/include/Synchronization.h offload/DeviceRTL/src/Synchronization.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/offload/DeviceRTL/include/Synchronization.h b/offload/DeviceRTL/include/Synchronization.h
index b07b0c1260..a4c13d9bef 100644
--- a/offload/DeviceRTL/include/Synchronization.h
+++ b/offload/DeviceRTL/include/Synchronization.h
@@ -163,7 +163,7 @@ V bit_xor(Ty *Address, V Val, atomic::OrderingTy Ordering) {
}
static inline uint32_t atomicExchange(uint32_t *Address, uint32_t Val,
- atomic::OrderingTy Ordering) {
+ atomic::OrderingTy Ordering) {
uint32_t R;
__scoped_atomic_exchange(Address, &Val, &R, Ordering, __MEMORY_SCOPE_DEVICE);
return R;
``````````
</details>
https://github.com/llvm/llvm-project/pull/122185
More information about the llvm-commits
mailing list