Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp72 bool RHSIsNull = in VisitObjCMessageExpr() local
75 if (RHSIsNull && isRemovable(ME)) in VisitObjCMessageExpr()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp13156 if (!IsOrdered && LHSIsNull != RHSIsNull) { in CheckCompareOperands()
13158 if (RHSIsNull) in CheckCompareOperands()
13253 && !LHSIsNull && !RHSIsNull) in CheckCompareOperands()
13274 if (LHSIsNull && !RHSIsNull) in CheckCompareOperands()
13374 if (!LHSIsNull && !RHSIsNull && in CheckCompareOperands()
13388 if (!LHSIsNull && !RHSIsNull) { in CheckCompareOperands()
13397 if (LHSIsNull && !RHSIsNull) in CheckCompareOperands()
13424 if (LHSIsNull && !RHSIsNull) { in CheckCompareOperands()
13451 if (LHSIsNull && !RHSIsNull) in CheckCompareOperands()
13512 if (!IsOrdered && RHSIsNull in CheckCompareOperands()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp11059 bool RHSIsNull = isa<ConstantPointerNull>(RHSV); in handleCmp() local
11060 if (!LHSIsNull && !RHSIsNull) in handleCmp()
11066 assert((LHSIsNull || RHSIsNull) && in handleCmp()