[llvm] Combine (X ^ Y) and (X == Y) where appropriate (PR #130922)
Pengcheng Wang via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 01:28:35 PDT 2025
================
@@ -17194,8 +17194,47 @@ static bool combine_CC(SDValue &LHS, SDValue &RHS, SDValue &CC, const SDLoc &DL,
return true;
}
+ // If XOR is reused and has an immediate that will fit in XORI,
+ // do not fold
+ auto Is12BitConstant = [](const SDValue &Op) -> bool {
+ if (Op.getOpcode() == ISD::Constant) {
+ const int64_t RiscvAluImmBits = 12;
----------------
wangpc-pp wrote:
`Riscv` is not a common word.
https://github.com/llvm/llvm-project/pull/130922
More information about the llvm-commits
mailing list