[llvm] [AArch64] Add support for 16/32/64-bit floating-point atomic read-modify-write ops (PR #125686)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 05:56:46 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 dcb7a695004c49aaef02c3171343864870009961 b5fbc4c7cb7a46ac5deacb1cc354063c41cf23c5 --extensions cpp -- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
index a9a7f31441..de7180d78c 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -27840,10 +27840,10 @@ AArch64TargetLowering::shouldExpandAtomicRMWInIR(AtomicRMWInst *AI) const {
return AtomicExpansionKind::None;
// Add support for LDFADD and friends
- bool CanUseAtomicFP = Subtarget->hasLSFE() &&
- (AI->getOperation() == AtomicRMWInst::FAdd ||
- AI->getOperation() == AtomicRMWInst::FMax ||
- AI->getOperation() == AtomicRMWInst::FMin);
+ bool CanUseAtomicFP =
+ Subtarget->hasLSFE() && (AI->getOperation() == AtomicRMWInst::FAdd ||
+ AI->getOperation() == AtomicRMWInst::FMax ||
+ AI->getOperation() == AtomicRMWInst::FMin);
if (CanUseAtomicFP)
return AtomicExpansionKind::None;
``````````
</details>
https://github.com/llvm/llvm-project/pull/125686
More information about the llvm-commits
mailing list