================
@@ -4960,6 +5040,9 @@ static SDValue performANDCombine(SDNode *N, SelectionDAG
&DAG,
if (!Subtarget.has32S())
return SDValue();
+ if (SDValue R = combineAndNotIntoVANDN(N, DL, DAG))
+ return R;
----------------
heiher wrote:
`combineAndNotIntoVANDN` doesn't depend on the `32s` feature, so this check
should be moved above the `has32S` guard.
https://github.com/llvm/llvm-project/pull/161037
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits