reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Scalar/IndVarSimplify.cpp
  373   case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break;
  375   case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break;
  377   case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
  379   case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break;
  381   case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
  383   case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
  410     if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
  410     if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
  419     if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
  419     if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
  436     if (NewPred == CmpInst::ICMP_SGE || NewPred == CmpInst::ICMP_SLT) {
  436     if (NewPred == CmpInst::ICMP_SGE || NewPred == CmpInst::ICMP_SLT) {
  445     if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
  445     if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
  467   ICmpInst *NewCompare = new ICmpInst(TheBr, NewPred, NewAdd,