-- | Predicates for the 'LLVM.AST.Instruction.ICmp' instruction module LLVM.AST.IntegerPredicate where import LLVM.Prelude -- | <http://llvm.org/docs/LangRef.html#icmp-instruction> data IntegerPredicate = EQ | NE | UGT | UGE | ULT | ULE | SGT | SGE | SLT | SLE deriving (Eq, Ord, Read, Show, Data, Typeable)