[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:31:01 PST 2025
================
@@ -44925,6 +44954,7 @@ static SDValue combineBitcastvxi1(SelectionDAG &DAG, EVT VT, SDValue Src,
// (v16i8 shuffle <0,2,4,6,8,10,12,14,u,u,...,u> (v16i8 bitcast t0), undef)
MVT SExtVT;
bool PropagateSExt = false;
+ std::map<std::tuple<SDValue, unsigned, bool>, bool> BitcastSrcVectorSizeMap;
----------------
phoebewang wrote:
DenseMap?
https://github.com/llvm/llvm-project/pull/130226
More information about the llvm-commits
mailing list