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

References

lib/AsmParser/LLParser.cpp
 5850     case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
 5851     case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
 5852     case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
 5853     case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
 5854     case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
 5855     case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
 5856     case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
 5857     case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
 5858     case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
 5859     case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
 5860     case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
 5861     case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
 5862     case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
 5863     case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
 5864     case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
 5865     case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
 5870     case lltok::kw_eq:  P = CmpInst::ICMP_EQ; break;
 5871     case lltok::kw_ne:  P = CmpInst::ICMP_NE; break;
 5872     case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
 5873     case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
 5874     case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
 5875     case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
 5876     case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
 5877     case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
 5878     case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
 5879     case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;