Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTContext.h2256 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp9279 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, in areCompatibleVectorTypes() argument
9281 assert(FirstVec->isVectorType() && "FirstVec should be a vector type"); in areCompatibleVectorTypes()
9284 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
9289 const auto *First = FirstVec->castAs<VectorType>(); in areCompatibleVectorTypes()