Home
last modified time | relevance | path

Searched refs:VISITCOMP (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenExprScalar.cpp921 #define VISITCOMP(CODE) \ macro
923 VISITCOMP(LT)
924 VISITCOMP(GT) in VISITCOMP() function in __anon1373b7f80111::ScalarExprEmitter
925 VISITCOMP(LE) in VISITCOMP()
926 VISITCOMP(GE) in VISITCOMP()
927 VISITCOMP(EQ) in VISITCOMP()
928 VISITCOMP(NE) in VISITCOMP()
929 #undef VISITCOMP in VISITCOMP()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp920 #define VISITCOMP(CODE, UI, SI, FP, SIG) \ macro
924 VISITCOMP(LT, ICMP_ULT, ICMP_SLT, FCMP_OLT, true)
925 VISITCOMP(GT, ICMP_UGT, ICMP_SGT, FCMP_OGT, true)
926 VISITCOMP(LE, ICMP_ULE, ICMP_SLE, FCMP_OLE, true)
927 VISITCOMP(GE, ICMP_UGE, ICMP_SGE, FCMP_OGE, true)
928 VISITCOMP(EQ, ICMP_EQ , ICMP_EQ , FCMP_OEQ, false)
929 VISITCOMP(NE, ICMP_NE , ICMP_NE , FCMP_UNE, false)
930 #undef VISITCOMP