[llvm] [X86] Properly chain PROBED_ALLOCA / SEG_ALLOCA (PR #116508)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Nov 16 13:01:44 PST 2024
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 797330e96c5abf0f1c623c1eb5ca69de28b484be 8afbeb7044c3b355e5390f9d2b33e284bccce1ff --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 61c24d1487..009a94daf5 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -25295,8 +25295,8 @@ X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
}
}
- Result = DAG.getNode(X86ISD::SEG_ALLOCA, dl, {SPTy, MVT::Other},
- {Chain, Size});
+ Result =
+ DAG.getNode(X86ISD::SEG_ALLOCA, dl, {SPTy, MVT::Other}, {Chain, Size});
Chain = Result.getValue(1);
} else {
SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
``````````
</details>
https://github.com/llvm/llvm-project/pull/116508
More information about the llvm-commits
mailing list