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

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 22 01:33:52 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->isRelational())
+    if (auto ImpliedCondition =
+            checkCondition(Cmp->getFlippedSignednessPredicate(),
----------------
nikic wrote:

IMHO getFlippedSignednessPredicate is semantically more correct here, even if in practice it makes no different between samesign typically only occurs on unsigned predicates.

If you want to use getSignedPredicate(), should also check isUnsigned instead of isRelational.

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


More information about the llvm-commits mailing list