Fixes some be typo (#4714)

This commit is contained in:
Zhengguo Yang
2020-10-13 09:37:15 +08:00
committed by GitHub
parent d73d205de7
commit 75e0ba32a1
130 changed files with 367 additions and 366 deletions

View File

@ -280,7 +280,7 @@ std::string BinaryPredicate::debug_string() const {
return BooleanVal(v1.val OP v2.val); \
}
// add '/**/' to pass codestyle check of cooder
// add '/**/' to pass code style check of cooder
#define BINARY_PRED_INT_FNS(TYPE, FN) \
BINARY_PRED_FN(Eq##TYPE##Pred, TYPE, FN, /**/ == /**/, CmpInst::ICMP_EQ) \
BINARY_PRED_FN(Ne##TYPE##Pred, TYPE, FN, /**/ != /**/, CmpInst::ICMP_NE) \
@ -408,7 +408,7 @@ BooleanVal EqStringValPred::get_boolean_val(ExprContext* ctx, TupleRow* row) {
return BooleanVal(v1.val OP v2.val); \
}
// add '/**/' to pass codestyle check of cooder
// add '/**/' to pass code style check of cooder
#define BINARY_PRED_FOR_NULL_INT_FNS(TYPE, FN) \
BINARY_PRED_FOR_NULL_FN(EqForNull##TYPE##Pred, TYPE, FN, /**/ == /**/, CmpInst::ICMP_EQ)