Searched refs:VISITCOMP (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGExprScalar.cpp | 822 #define VISITCOMP(CODE, UI, SI, FP, SIG) \ macro 826 VISITCOMP(LT, ICMP_ULT, ICMP_SLT, FCMP_OLT, true) 827 VISITCOMP(GT, ICMP_UGT, ICMP_SGT, FCMP_OGT, true) 828 VISITCOMP(LE, ICMP_ULE, ICMP_SLE, FCMP_OLE, true) 829 VISITCOMP(GE, ICMP_UGE, ICMP_SGE, FCMP_OGE, true) 830 VISITCOMP(EQ, ICMP_EQ , ICMP_EQ , FCMP_OEQ, false) 831 VISITCOMP(NE, ICMP_NE , ICMP_NE , FCMP_UNE, false) 832 #undef VISITCOMP
|