llvm::FixedPointBuilder::CreateNE

Compare two fixed-point values for inequality.

Synopsis

Declared in <llvm/IR/FixedPointBuilder.h>

Value*
CreateNE(
    Value* LHS,
    FixedPointSemantics const& LHSSema,
    Value* RHS,
    FixedPointSemantics const& RHSSema);

Return Value

An i1 value that is true when LHS is not equal to RHS.

Parameters

NameDescription
LHSThe left-hand side value.
LHSSemaThe fixed-point semantic of LHS.
RHSThe right-hand side value.
RHSSemaThe fixed-point semantic of RHS.