[llvm] [CodeGenPrepare][RISCV] Combine (X ^ Y) and (X == Y) where appropriate (PR #130922)
Min-Yih Hsu via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 1 15:28:30 PDT 2025
================
@@ -17194,12 +17194,56 @@ 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 IsXorImmediate = [](const SDValue &Op) -> bool {
----------------
mshockwave wrote:
lambda functions should following the normal function naming convention, which starts with lower case. ditto for other occurrences here.
https://github.com/llvm/llvm-project/pull/130922
More information about the llvm-commits
mailing list