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.cpp10082 const VectorType *LHSVecType = LHSType->getAs<VectorType>(); in CheckVectorOperands() local
10084 assert(LHSVecType || RHSVecType); in CheckVectorOperands()
10088 if (!AllowBothBool && LHSVecType && in CheckVectorOperands()
10089 LHSVecType->getVectorKind() == VectorKind::AltiVecBool && RHSVecType && in CheckVectorOperands()
10103 if (LHSVecType && RHSVecType && in CheckVectorOperands()
10105 if (isa<ExtVectorType>(LHSVecType)) { in CheckVectorOperands()
10118 if (AllowBoolConversions && LHSVecType && RHSVecType && in CheckVectorOperands()
10119 LHSVecType->getNumElements() == RHSVecType->getNumElements() && in CheckVectorOperands()
10120 (Context.getTypeSize(LHSVecType->getElementType()) == in CheckVectorOperands()
10122 if (LHSVecType->getVectorKind() == VectorKind::AltiVecVector && in CheckVectorOperands()
[all …]