Add support for vector formal arguments.

llvm-svn: 39721
This commit is contained in:
Chris Lattner 2007-07-10 00:28:12 +00:00
parent 6eea886b9e
commit 50d4abd24c
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ const llvm::Type *CodeGenFunction::ConvertType(QualType T) {
}
bool CodeGenFunction::hasAggregateLLVMType(QualType T) {
return !T->isRealType() && !T->isPointerType() && !T->isVoidType();
return !T->isRealType() && !T->isPointerType() && !T->isVoidType() &&
!T->isVectorType();
}