[llvm] [IR] Add helper `CmpPredicate::dropSameSign` (PR #134071)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 05:24: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:
I don't think this is a problem in practice, as we already have things like SmallVector::drop_front().
https://github.com/llvm/llvm-project/pull/134071
More information about the llvm-commits
mailing list