Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp11396 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType(); in checkArithmeticNull() local
11400 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() || in checkArithmeticNull()
11401 NonNullType->isMemberPointerType() || NonNullType->isFunctionType()) in checkArithmeticNull()
11415 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() || in checkArithmeticNull()
11416 NonNullType->canDecayToPointerType()) in checkArithmeticNull()
11420 << LHSNull /* LHS is NULL */ << NonNullType in checkArithmeticNull()