[llvm] SelectionDAG: neg (and x, 1) --> SIGN_EXTEND_INREG x, i1 (PR #131239)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 17:59:31 PDT 2025
================
@@ -3964,6 +3964,20 @@ SDValue DAGCombiner::visitSUB(SDNode *N) {
isNullConstant(N1S.getOperand(0)))
return DAG.getSplat(VT, DL, N1S.getOperand(1));
}
+
+ // sub 0, (and x, 1) --> SIGN_EXTEND_INREG x, i1
+ if (N1.getOpcode() == ISD::AND && N1.hasOneUse() &&
+ isOneOrOneSplat(N1->getOperand(1))) {
----------------
arsenm wrote:
Can you do the globalisel version?
https://github.com/llvm/llvm-project/pull/131239
More information about the llvm-commits
mailing list