llvm-general-pure-3.4.5.3: src/LLVM/General/AST/FloatingPointPredicate.hs
-- | Predicates for the 'LLVM.General.AST.Instruction.FCmp' instruction module LLVM.General.AST.FloatingPointPredicate where import LLVM.General.Prelude -- | <http://llvm.org/docs/LangRef.html#fcmp-instruction> data FloatingPointPredicate = False | OEQ | OGT | OGE | OLT | OLE | ONE | ORD | UNO | UEQ | UGT | UGE | ULT | ULE | UNE | True deriving (Eq, Ord, Read, Show, Data, Typeable)