Home
last modified time | relevance | path

Searched refs:RHSIsNull (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp72 bool RHSIsNull = in VisitObjCMessageExpr() local
75 if (RHSIsNull && isRemovable(ME)) in VisitObjCMessageExpr()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp12682 bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull; in CheckCompareOperands() local
12698 if (CompositeTy->isPointerType() && LHSIsNull != RHSIsNull) { in CheckCompareOperands()
12712 if (!IsOrdered && LHSIsNull != RHSIsNull) { in CheckCompareOperands()
12714 if (RHSIsNull) in CheckCompareOperands()
12738 (RHSType->isIntegerType() && !RHSIsNull)) { in CheckCompareOperands()
12809 && !LHSIsNull && !RHSIsNull) in CheckCompareOperands()
12818 if (getLangOpts().OpenCL && !LHSIsNull && !RHSIsNull) { in CheckCompareOperands()
12830 if (LHSIsNull && !RHSIsNull) in CheckCompareOperands()
12846 if (!IsOrdered && LHSIsNull && RHSIsNull) { in CheckCompareOperands()
12857 if (!getLangOpts().CPlusPlus && !IsOrdered && (LHSIsNull || RHSIsNull)) { in CheckCompareOperands()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp10682 bool RHSIsNull = isa<ConstantPointerNull>(RHS); in handleCmp() local
10683 if (!LHSIsNull && !RHSIsNull) in handleCmp()
10689 assert((LHSIsNull || RHSIsNull) && in handleCmp()