Return true if the given values are known to be non-equal when defined. Supports scalar integer types only.
Declared in <llvm/Analysis/ValueTracking.h>
bool
isKnownNonEqual(
Value const* V1,
Value const* V2,
SimplifyQuery const& SQ,
unsigned int Depth = 0);
True if V1 and V2 are known unequal when defined.
| Name | Description |
|---|---|
| V1 | First value of the inequality query. |
| V2 | Second value of the inequality query. |
| SQ | Simplify query providing context for the analysis. |
| Depth | Current recursion depth for this query. |