[llvm] [X86] Generate `kmov` for masking integers (PR #120593)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 6 03:10:45 PST 2025


================
@@ -55579,6 +55658,12 @@ static SDValue combineSetCC(SDNode *N, SelectionDAG &DAG,
              "Unexpected condition code!");
       return Op0.getOperand(0);
     }
+
+    if (IsVZero1) {
+      if (SDValue V =
+              combineAVX512SetCCToKMOV(VT, Op0, TmpCC, DL, DAG, Subtarget))
+        return V;
+    }
----------------
RKSimon wrote:

(style) remove outer braces

https://github.com/llvm/llvm-project/pull/120593


More information about the llvm-commits mailing list