[llvm] [InstSimplify] Use multi-op replacement when simplify `select` (PR #121708)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 6 13:05:01 PST 2025


================
@@ -4372,7 +4383,9 @@ static Value *simplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp,
       // by assumption and this case never wraps, so nowrap flags can be
       // ignored.
       if ((Opcode == Instruction::Sub || Opcode == Instruction::Xor) &&
-          NewOps[0] == RepOp && NewOps[1] == RepOp)
+          any_of(ValidReplacements, [=](const auto &Rep) {
+            return NewOps[0] == NewOps[1] && NewOps[0] == Rep.second;
----------------
nikic wrote:

You can move NewOps[0] == NewOps[1] out of the any_of.

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


More information about the llvm-commits mailing list