[llvm] [IR] Add helper `CmpPredicate::withoutSameSign` (PR #134071)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 04:29:48 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; }
----------------
artagnon wrote:
Possibly dropSameSign is a better name?
https://github.com/llvm/llvm-project/pull/134071
More information about the llvm-commits
mailing list