[llvm] [X86] Fix duplicated compute in recursive search. (PR #130226)
Phoebe Wang via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 22:01:27 PST 2025
================
@@ -44745,31 +44746,59 @@ bool X86TargetLowering::isSplatValueForTargetNode(SDValue Op,
// Helper to peek through bitops/trunc/setcc to determine size of source vector.
// Allows combineBitcastvxi1 to determine what size vector generated a <X x i1>.
-static bool checkBitcastSrcVectorSize(SDValue Src, unsigned Size,
- bool AllowTruncate) {
+static bool
+checkBitcastSrcVectorSize(SDValue Src, unsigned Size, bool AllowTruncate,
+ std::map<std::tuple<SDValue, unsigned, bool>, bool>
+ &BitcastSrcVectorSizeMap) {
----------------
phoebewang wrote:
Format the code?
https://github.com/llvm/llvm-project/pull/130226
More information about the llvm-commits
mailing list