[llvm] [X86][AVX512] Better lowering for `_mm512_maskz_shuffle_epi32` (PR #121147)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 10 09:53:16 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 497a3df6bbcdec204783b212bb590e4b5d29690a 24989a2f02dce6e83650faf81e8c1516ba98c710 --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 48adbbebf1..5e8329ad25 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -17362,9 +17362,9 @@ static SDValue lowerShuffleAsVSELECT(const SDLoc &DL, ArrayRef<int> Mask,
if (!ISD::isBuildVectorAllZeros(BuildVector.getNode()))
return SDValue();
-
- // This relates to the lowering of `_mm512_maskz_shuffle_epi32` intrinsic.
- // The `BUILD_VECTOR` contains the zeroing mask. If the corresponding
+
+ // This relates to the lowering of `_mm512_maskz_shuffle_epi32` intrinsic.
+ // The `BUILD_VECTOR` contains the zeroing mask. If the corresponding
// element is UNDEF, then the bit in mask is set. If it is zero, the
// corresponding bit in mask is zero.
APInt DestMask(16, 0);
``````````
</details>
https://github.com/llvm/llvm-project/pull/121147
More information about the llvm-commits
mailing list