Drop uses of isPointerLikeType.

- No functionality change.

llvm-svn: 65560
This commit is contained in:
Daniel Dunbar
2009-02-26 19:03:24 +00:00
parent 265fc59cb2
commit e2617d97a5
3 changed files with 5 additions and 5 deletions

View File

@@ -82,8 +82,8 @@ bool CodeGenFunction::isObjCPointerType(QualType T) {
bool CodeGenFunction::hasAggregateLLVMType(QualType T) {
// FIXME: Use positive checks instead of negative ones to be more
// robust in the face of extension.
return !isObjCPointerType(T) &&!T->isRealType() && !T->isPointerLikeType() &&
!T->isVoidType() && !T->isVectorType() && !T->isFunctionType() &&
return !isObjCPointerType(T) &&!T->isRealType() && !T->isPointerType() &&
!T->isReferenceType() && !T->isVoidType() && !T->isVectorType() && !T->isFunctionType() &&
!T->isBlockPointerType();
}