aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/ASTContext.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-04-07 04:13:03 +0000
committerChris Lattner <sabre@nondot.org>2008-04-07 04:13:03 +0000
commit53efc251792bf2c9c5f295bd3507facc51a1fe7e (patch)
tree119c01410a94060fefd0496dcdbd956a40b75c63 /lib/AST/ASTContext.cpp
parentc4e405996217f4be20f73186da53b23b5c4783dc (diff)
This predicate is just a generic "issuperclass" predicate, move it to the
ObjCInterfaceType as a method. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49306 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/ASTContext.cpp')
-rw-r--r--lib/AST/ASTContext.cpp23
1 files changed, 6 insertions, 17 deletions
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp
index a0bbac7485..6e0bfa1a98 100644
--- a/lib/AST/ASTContext.cpp
+++ b/lib/AST/ASTContext.cpp
@@ -1443,20 +1443,6 @@ bool ASTContext::objcTypesAreCompatible(QualType LHS, QualType RHS) {
return false;
}
-/// isCompatibleInterfaceAssign - Return true if it is ok to assign a
-/// pointer from the RHS interface to the LHS interface. This is true if the
-/// RHS is exactly LHS or if it is a subclass of LHS.
-static bool isCompatibleInterfaceAssign(ObjCInterfaceDecl *LHS,
- ObjCInterfaceDecl *RHS) {
- // If RHS is derived from LHS it is OK; else it is not OK.
- while (RHS != NULL) {
- if (RHS == LHS)
- return true;
- RHS = RHS->getSuperClass();
- }
- return false;
-}
-
bool ASTContext::QualifiedInterfaceTypesAreCompatible(QualType lhs,
QualType rhs) {
const ObjCQualifiedInterfaceType *lhsQI =
@@ -1465,7 +1451,9 @@ bool ASTContext::QualifiedInterfaceTypesAreCompatible(QualType lhs,
rhs->getAsObjCQualifiedInterfaceType();
assert(lhsQI && rhsQI && "QualifiedInterfaceTypesAreCompatible - bad type");
- if (!isCompatibleInterfaceAssign(lhsQI->getDecl(), rhsQI->getDecl()))
+ // Verify that the base decls are compatible, the RHS must be a subclass of
+ // the LHS.
+ if (!lhsQI->getDecl()->isSuperClassOf(rhsQI->getDecl()))
return false;
// All protocols in lhs must have a presence in rhs.
@@ -1857,8 +1845,9 @@ bool ASTContext::typesAreCompatible(QualType LHS_NC, QualType RHS_NC) {
case Type::Builtin:
return builtinTypesAreCompatible(LHS, RHS);
case Type::ObjCInterface:
- return isCompatibleInterfaceAssign(cast<ObjCInterfaceType>(LHS)->getDecl(),
- cast<ObjCInterfaceType>(RHS)->getDecl());
+ // The LHS must be a superclass of the RHS.
+ return cast<ObjCInterfaceType>(LHS)->getDecl()->isSuperClassOf(
+ cast<ObjCInterfaceType>(RHS)->getDecl());
case Type::Vector:
case Type::OCUVector:
return vectorTypesAreCompatible(LHS, RHS);