Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp10280 const VectorType *LHSVecType = LHSType->getAs<VectorType>(); in CheckVectorOperands() local
10282 assert(LHSVecType || RHSVecType); in CheckVectorOperands()
10289 if ((LHSVecType && LHSVecType->getElementType()->isMFloat8Type()) || in CheckVectorOperands()
10295 if (!AllowBothBool && LHSVecType && in CheckVectorOperands()
10296 LHSVecType->getVectorKind() == VectorKind::AltiVecBool && RHSVecType && in CheckVectorOperands()
10310 if (LHSVecType && RHSVecType && in CheckVectorOperands()
10312 if (isa<ExtVectorType>(LHSVecType)) { in CheckVectorOperands()
10325 if (AllowBoolConversions && LHSVecType && RHSVecType && in CheckVectorOperands()
10326 LHSVecType->getNumElements() == RHSVecType->getNumElements() && in CheckVectorOperands()
10327 (Context.getTypeSize(LHSVecType->getElementType()) == in CheckVectorOperands()
[all …]