Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp72 bool RHSIsNull = in VisitObjCMessageExpr() local
75 if (RHSIsNull && isRemovable(ME)) in VisitObjCMessageExpr()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp12451 if (!IsOrdered && LHSIsNull != RHSIsNull) { in CheckCompareOperands()
12453 if (RHSIsNull) in CheckCompareOperands()
12548 && !LHSIsNull && !RHSIsNull) in CheckCompareOperands()
12569 if (LHSIsNull && !RHSIsNull) in CheckCompareOperands()
12648 if (!LHSIsNull && !RHSIsNull && in CheckCompareOperands()
12662 if (!LHSIsNull && !RHSIsNull) { in CheckCompareOperands()
12671 if (LHSIsNull && !RHSIsNull) in CheckCompareOperands()
12698 if (LHSIsNull && !RHSIsNull) { in CheckCompareOperands()
12725 if (LHSIsNull && !RHSIsNull) in CheckCompareOperands()
12786 if (!IsOrdered && RHSIsNull in CheckCompareOperands()
[all …]
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp10064 bool RHSIsNull = isa<ConstantPointerNull>(RHS); in handleCmp() local
10065 if (!LHSIsNull && !RHSIsNull) in handleCmp()
10071 assert((LHSIsNull || RHSIsNull) && in handleCmp()