Searched refs:VISITCOMP (Results 1 – 1 of 1) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprScalar.cpp | 863 #define VISITCOMP(CODE, UI, SI, FP, SIG) \ macro 867 VISITCOMP(LT, ICMP_ULT, ICMP_SLT, FCMP_OLT, true) 868 VISITCOMP(GT, ICMP_UGT, ICMP_SGT, FCMP_OGT, true) 869 VISITCOMP(LE, ICMP_ULE, ICMP_SLE, FCMP_OLE, true) 870 VISITCOMP(GE, ICMP_UGE, ICMP_SGE, FCMP_OGE, true) 871 VISITCOMP(EQ, ICMP_EQ , ICMP_EQ , FCMP_OEQ, false) 872 VISITCOMP(NE, ICMP_NE , ICMP_NE , FCMP_UNE, false) 873 #undef VISITCOMP
|