-- | Predicates for the 'LLVM.AST.Instruction.ICmp' instruction module LLVM.AST.IntegerPredicate where import LLVM.Prelude -- | data IntegerPredicate = EQ | NE | UGT | UGE | ULT | ULE | SGT | SGE | SLT | SLE deriving (Eq, Ord, Read, Show, Data, Typeable, Generic)