Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp72 bool RHSIsNull = in VisitObjCMessageExpr() local
75 if (RHSIsNull && isRemovable(ME)) in VisitObjCMessageExpr()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp12106 bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull; in CheckCompareOperands() local
12122 if (CompositeTy->isPointerType() && LHSIsNull != RHSIsNull) { in CheckCompareOperands()
12136 if (!IsOrdered && LHSIsNull != RHSIsNull) { in CheckCompareOperands()
12138 if (RHSIsNull) in CheckCompareOperands()
12162 (RHSType->isIntegerType() && !RHSIsNull)) { in CheckCompareOperands()
12233 && !LHSIsNull && !RHSIsNull) in CheckCompareOperands()
12242 if (getLangOpts().OpenCL && !LHSIsNull && !RHSIsNull) { in CheckCompareOperands()
12254 if (LHSIsNull && !RHSIsNull) in CheckCompareOperands()
12271 if (!IsOrdered && LHSIsNull && RHSIsNull) { in CheckCompareOperands()
12282 if (!getLangOpts().CPlusPlus && !IsOrdered && (LHSIsNull || RHSIsNull)) { in CheckCompareOperands()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp11050 bool RHSIsNull = isa<ConstantPointerNull>(RHSV); in handleCmp() local
11051 if (!LHSIsNull && !RHSIsNull) in handleCmp()
11057 assert((LHSIsNull || RHSIsNull) && in handleCmp()