[llvm] [ARM] Custom Lowering for SADDO_CARRY an SSUBO_CARRY (PR #154419)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 19 13:15:38 PDT 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 HEAD~1 HEAD --extensions cpp -- llvm/lib/Target/ARM/ARMISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp
index 875531bc5..92a139654 100644
--- a/llvm/lib/Target/ARM/ARMISelLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -4935,8 +4935,8 @@ static SDValue valueToCarryFlag(SDValue Value, SelectionDAG &DAG, bool Invert) {
return Cmp.getValue(1);
}
-static SDValue carryFlagToValue(SDValue Flags, EVT VT,
- SelectionDAG &DAG, bool Invert) {
+static SDValue carryFlagToValue(SDValue Flags, EVT VT, SelectionDAG &DAG,
+ bool Invert) {
SDLoc DL(Flags);
if (Invert) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/154419
More information about the llvm-commits
mailing list