Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:ICmpInst

187 ISD::CondCode llvm::getICmpCondCode(ICmpInst::Predicate Pred) {
189 case ICmpInst::ICMP_EQ: return ISD::SETEQ;
190 case ICmpInst::ICMP_NE: return ISD::SETNE;
191 case ICmpInst::ICMP_SLE: return ISD::SETLE;
192 case ICmpInst::ICMP_ULE: return ISD::SETULE;
193 case ICmpInst::ICMP_SGE: return ISD::SETGE;
194 case ICmpInst::ICMP_UGE: return ISD::SETUGE;
195 case ICmpInst::ICMP_SLT: return ISD::SETLT;
196 case ICmpInst::ICMP_ULT: return ISD::SETULT;
197 case ICmpInst::ICMP_SGT: return ISD::SETGT;
198 case ICmpInst::ICMP_UGT: return ISD::SETUGT;