Searched refs:VISITCOMP (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExprScalar.cpp | 882 #define VISITCOMP(CODE, UI, SI, FP, SIG) \ macro 886 VISITCOMP(LT, ICMP_ULT, ICMP_SLT, FCMP_OLT, true) 887 VISITCOMP(GT, ICMP_UGT, ICMP_SGT, FCMP_OGT, true) 888 VISITCOMP(LE, ICMP_ULE, ICMP_SLE, FCMP_OLE, true) 889 VISITCOMP(GE, ICMP_UGE, ICMP_SGE, FCMP_OGE, true) 890 VISITCOMP(EQ, ICMP_EQ , ICMP_EQ , FCMP_OEQ, false) 891 VISITCOMP(NE, ICMP_NE , ICMP_NE , FCMP_UNE, false) 892 #undef VISITCOMP
|