Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp10701 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); in checkArithmeticNull() local
10705 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || in checkArithmeticNull()
10706 NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) in checkArithmeticNull()
10720 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || in checkArithmeticNull()
10721 NonNullType->canDecayToPointerType()) in checkArithmeticNull()
10725 << LHSNull /* LHS is NULL */ << NonNullType in checkArithmeticNull()