[llvm] [InstCombine] fold `(a == c && b != c) || (a != c && b == c))` to `(a == c) == (b != c)` (PR #94915)

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 21 23:17:38 PDT 2024


================
@@ -3421,6 +3421,25 @@ Value *InstCombinerImpl::foldAndOrOfICmps(ICmpInst *LHS, ICmpInst *RHS,
   return foldAndOrOfICmpsUsingRanges(LHS, RHS, IsAnd);
 }
 
+static Value *foldAorBConst(BinaryOperator &I,
----------------
dtcxzyw wrote:

What does `Const` mean here?


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


More information about the llvm-commits mailing list