aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/ASTContext.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2009-06-02 18:32:00 +0000
committerFariborz Jahanian <fjahanian@apple.com>2009-06-02 18:32:00 +0000
commit8df7a28269a1c0f4444928d0baea402b410e95f1 (patch)
tree662bc42f28accb710a521ec4d2e93dbbb326fdd9 /lib/AST/ASTContext.cpp
parent05b65ef3fbcc4b82e9a6527d92efc5f9fbdfa916 (diff)
Issue diagnostics on __weak attribute mismatch.
Fixes an error recovery issue which caused a crash. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72733 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/ASTContext.cpp')
-rw-r--r--lib/AST/ASTContext.cpp37
1 files changed, 28 insertions, 9 deletions
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp
index 29bca29f23..017d09d265 100644
--- a/lib/AST/ASTContext.cpp
+++ b/lib/AST/ASTContext.cpp
@@ -2785,7 +2785,7 @@ QualType::GCAttrTypes ASTContext::getObjCGCAttrKind(const QualType &Ty) const {
}
// Non-pointers have none gc'able attribute regardless of the attribute
// set on them.
- else if (!isObjCObjectPointerType(Ty) && !Ty->isPointerType())
+ else if (!Ty->isPointerType() && !isObjCObjectPointerType(Ty))
return QualType::GCNone;
}
return GCAttrs;
@@ -3033,26 +3033,45 @@ QualType ASTContext::mergeTypes(QualType LHS, QualType RHS) {
if (RHSClass == Type::ExtQual) {
QualType::GCAttrTypes GCAttr = RHSCan.getObjCGCAttr();
if (GCAttr != QualType::GCNone) {
+ // __weak attribute must appear on both declarations.
+ // FIXME. __strong attribue is redundant if other decl is an objective-c
+ // object pointer (or decorated with __strong attribute). We can't issue
+ // diagnostic on __strong mismatch becuase 'id' may not be
+ // available but only with its canonical type at this point. Will
+ // visit this when 'id' becomes a concrete type.
+ if (GCAttr == QualType::Weak && LHSCan.getObjCGCAttr() != GCAttr)
+ return QualType();
+
RHS = QualType(cast<ExtQualType>(RHS.getDesugaredType())->getBaseType(),
RHS.getCVRQualifiers());
QualType Result = mergeTypes(LHS, RHS);
- if (Result.getObjCGCAttr() == QualType::GCNone)
- Result = getObjCGCQualType(Result, GCAttr);
- else if (Result.getObjCGCAttr() != GCAttr)
- Result = QualType();
+ if (!Result.isNull()) {
+ if (Result.getObjCGCAttr() == QualType::GCNone)
+ Result = getObjCGCQualType(Result, GCAttr);
+ else if (Result.getObjCGCAttr() != GCAttr)
+ Result = QualType();
+ }
return Result;
}
}
if (LHSClass == Type::ExtQual) {
QualType::GCAttrTypes GCAttr = LHSCan.getObjCGCAttr();
if (GCAttr != QualType::GCNone) {
+ QualType::GCAttrTypes GCRHSAttr = RHSCan.getObjCGCAttr();
+ // __weak attribute must appear on both declarations. __strong
+ // attribue is redundant if other decl is an objective-c object pointer.
+ // See above FIXME comment.
+ if (GCAttr == QualType::Weak && GCRHSAttr != GCAttr)
+ return QualType();
LHS = QualType(cast<ExtQualType>(LHS.getDesugaredType())->getBaseType(),
LHS.getCVRQualifiers());
QualType Result = mergeTypes(LHS, RHS);
- if (Result.getObjCGCAttr() == QualType::GCNone)
- Result = getObjCGCQualType(Result, GCAttr);
- else if (Result.getObjCGCAttr() != GCAttr)
- Result = QualType();
+ if (!Result.isNull()) {
+ if (Result.getObjCGCAttr() == QualType::GCNone)
+ Result = getObjCGCQualType(Result, GCAttr);
+ else if (Result.getObjCGCAttr() != GCAttr)
+ Result = QualType();
+ }
return Result;
}
}