llvm::CmpPredicate::operator!=

Inequality operators

Synopses

Declared in <llvm/IR/CmpPredicate.h>

An operator!= on the underlying Predicate.

bool
operator!=(CmpInst::Predicate P) const;
» more...

There is no operator!= defined on CmpPredicate. Use getMatching instead to get the canonicalized matching CmpPredicate.

bool
operator!=(CmpPredicate Other) const = delete;
» more...

Return Value

True if the underlying Predicate does not equal P.

Parameters

NameDescription
PThe predicate to compare against.
OtherUnused; this operator is deleted.