bool allRTypes = true;
// Check return type
- QualType LRES = lbase->getResultType();
- QualType RRES = rbase->getResultType();
- Qualifiers::GC GC_L = LRES.getObjCGCAttr();
- Qualifiers::GC GC_R = RRES.getObjCGCAttr();
- // __weak/__strong attribute on one function/block return type but
- // not the other is OK.
- if (GC_L != GC_R) {
- if (GC_R == Qualifiers::GCNone)
- RRES = getObjCGCQualType(RRES, GC_L);
- else if (GC_L == Qualifiers::GCNone)
- LRES = getObjCGCQualType(LRES, GC_R);
- }
-
- QualType retType = mergeTypes(LRES, RRES);
+ QualType retType = mergeTypes(lbase->getResultType(), rbase->getResultType());
if (retType.isNull()) return QualType();
- if (getCanonicalType(retType) != getCanonicalType(LRES))
+ if (getCanonicalType(retType) != getCanonicalType(lbase->getResultType()))
allLTypes = false;
- if (getCanonicalType(retType) != getCanonicalType(RRES))
+ if (getCanonicalType(retType) != getCanonicalType(rbase->getResultType()))
allRTypes = false;
// FIXME: double check this
bool NoReturn = lbase->getNoReturnAttr() || rbase->getNoReturnAttr();
+++ /dev/null
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify -fblocks -fobjc-gc %s
-
-@interface Intf {
-@public
- void (^block) (id);
- __weak void (^weak_block) (id);
- void (*fptr) (id);
- __weak void (*weak_fptr) (id);
-}
-@end
-
-int main() {
- Intf *observer;
- return (observer->block != observer->weak_block ||
- observer->fptr != observer->weak_fptr);
-}
-
extern id CFRunLoopGetMain();
extern __strong id CFRunLoopGetMain();
-extern __weak id WLoopGetMain();
-extern id WLoopGetMain();
+extern __weak id WLoopGetMain(); // expected-note {{previous declaration is here}}
+extern id WLoopGetMain(); // expected-error {{conflicting types for 'WLoopGetMain'}}
extern id p3; // expected-note {{previous definition is here}}
extern __weak id p3; // expected-error {{redefinition of 'p3' with a different type}}