[llvm] [IR] Add helper `CmpPredicate::dropSameSign` (PR #134071)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 05:22:14 PDT 2025


================
@@ -41,6 +41,10 @@ class CmpPredicate {
   /// Query samesign information, for optimizations.
   bool hasSameSign() const { return HasSameSign; }
 
+  /// Drops samesign information. This is used when the samesign information
+  /// should be dropped explicitly.
+  CmpInst::Predicate withoutSameSign() const { return Pred; }
----------------
nikic wrote:

Not strong opinion, but the reason I suggested withoutSameSign is that it makes it clear that this is not an in-place operation (what dropSameSign normally implies).

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


More information about the llvm-commits mailing list