[llvm] [X86] Early return when reach to MaxRecursionDepth. (PR #130226)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 9 20:02:51 PDT 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;
----------------
haonanya1 wrote:
Update pr to Early return when reach to MaxRecursionDepth.
https://github.com/llvm/llvm-project/pull/130226
More information about the llvm-commits
mailing list