[llvm] [X86][ISel][FMA] Get a handle on operand nodes when negating FMA (PR #130176)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 02:23:12 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 1b75b9e665ee3c43de85c25f8d5f10d4efb3ca39 18b197885678e2ae241889447781b12361103696 --extensions cpp -- llvm/lib/Target/X86/X86ISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 1b56826667..e7b75fdf23 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -55673,12 +55673,12 @@ static SDValue combineFMA(SDNode *N, SelectionDAG &DAG,
// Do not convert the passthru input of scalar intrinsics.
// FIXME: We could allow negations of the lower element only.
bool NegA = invertIfNegative(A);
- // Create a dummy use for A so that in the process of negating B or C
- // recursively, it is not deleted.
- HandleSDNode NegAHandle(A);
+ // Create a dummy use for A so that in the process of negating B or C
+ // recursively, it is not deleted.
+ HandleSDNode NegAHandle(A);
bool NegB = invertIfNegative(B);
- // Similar to A, get a handle on B.
- HandleSDNode NegBHandle(B);
+ // Similar to A, get a handle on B.
+ HandleSDNode NegBHandle(B);
bool NegC = invertIfNegative(C);
if (!NegA && !NegB && !NegC)
``````````
</details>
https://github.com/llvm/llvm-project/pull/130176
More information about the llvm-commits
mailing list