[llvm] [ConstraintElim] Teach checkAndReplaceCondition about samesign (PR #128168)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 02:08:57 PST 2025


================
@@ -1460,6 +1460,13 @@ static bool checkAndReplaceCondition(
           checkCondition(Cmp->getPredicate(), Cmp->getOperand(0),
                          Cmp->getOperand(1), Cmp, Info))
     return ReplaceCmpWithConstant(Cmp, *ImpliedCondition);
+
+  if (Cmp->hasSameSign() && Cmp->isUnsigned())
----------------
fhahn wrote:

Might be good to add a brief comment here that we also try the signed predicate for samesign unsigned predicates.

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


More information about the llvm-commits mailing list