Generate code for va_start and va_end.

llvm-svn: 42939
This commit is contained in:
Anders Carlsson
2007-10-12 23:56:29 +00:00
parent fd0312ed79
commit 24ebce6fca
8 changed files with 41 additions and 10 deletions

View File

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