[llvm] [ARM] Use correct ABI for atomic functions (PR #128891)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 07:19:36 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 e7ad07ffb846a9812d9567b8d4b680045dce5b28 613550400921d465e6189d9b0ce94ef5ffbd3e4f --extensions cpp,h -- llvm/lib/CodeGen/AtomicExpandPass.cpp llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp llvm/lib/Target/AArch64/AArch64ISelLowering.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.h b/llvm/lib/Target/AArch64/AArch64ISelLowering.h
index 9a009f0eb6..2a015f8ed6 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.h
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.h
@@ -1379,9 +1379,7 @@ private:
return VecOp.getOpcode() == ISD::SETCC;
}
- bool shouldExtendTypeInLibCall(EVT Type) const override {
- return false;
- }
+ bool shouldExtendTypeInLibCall(EVT Type) const override { return false; }
};
namespace AArch64 {
``````````
</details>
https://github.com/llvm/llvm-project/pull/128891
More information about the llvm-commits
mailing list