]> granicus.if.org Git - clang/commitdiff
Warn on usage of unavailable objc 'class' in
authorFariborz Jahanian <fjahanian@apple.com>
Tue, 8 Mar 2011 19:12:46 +0000 (19:12 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Tue, 8 Mar 2011 19:12:46 +0000 (19:12 +0000)
varienty of cases. // rdar://9092208

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127257 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaDecl.cpp
lib/Sema/SemaExprObjC.cpp
test/SemaObjC/class-unavail-warning.m [new file with mode: 0644]

index 28ae04aea5bf18d3da9c1ed2ac3a54443c92af33..4bc5c3bfe7d7d0e70c99946244e66c0b48b14b81 100644 (file)
@@ -212,6 +212,7 @@ ParsedType Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc,
       }
     }
   } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
+    (void)DiagnoseUseOfDecl(IDecl, NameLoc);
     if (!HasTrailingDot)
       T = Context.getObjCInterfaceType(IDecl);
   }
index 4d03b068ca855d08e27dca6844e0c2346572626d..3d8d42fa001ee5691cf8dc3639c388bd2381e966 100644 (file)
@@ -868,7 +868,7 @@ ExprResult Sema::BuildClassMessage(TypeSourceInfo *ReceiverTypeInfo,
     return ExprError();
   }
   assert(Class && "We don't know which class we're messaging?");
-
+  (void)DiagnoseUseOfDecl(Class, Loc);
   // Find the method we are messaging.
   if (!Method) {
     if (Class->isForwardDecl()) {
diff --git a/test/SemaObjC/class-unavail-warning.m b/test/SemaObjC/class-unavail-warning.m
new file mode 100644 (file)
index 0000000..426ac77
--- /dev/null
@@ -0,0 +1,24 @@
+// RUN: %clang_cc1  -fsyntax-only -verify %s
+// rdar://9092208
+
+__attribute__((unavailable("not available")))
+@interface MyClass { // expected-note 5 {{function has been explicitly marked unavailable here}}
+@public
+    void *_test;
+}
+
+- (id)self;
+- new;
++ (void)addObject:(id)anObject;
+
+@end
+
+int main() {
+ [MyClass new]; // expected-error {{'MyClass' is unavailable: not available}}
+ [MyClass self]; // expected-error {{'MyClass' is unavailable: not available}}
+ [MyClass addObject:((void *)0)]; // expected-error {{'MyClass' is unavailable: not available}}
+
+ MyClass *foo = [MyClass new]; // expected-error 2 {{'MyClass' is unavailable: not available}}
+
+ return 0;
+}