Rework how ObjC method inherit deprecated/availability.
authorTed Kremenek <kremenek@apple.com>
Sat, 6 Apr 2013 00:34:27 +0000 (00:34 +0000)
committerTed Kremenek <kremenek@apple.com>
Sat, 6 Apr 2013 00:34:27 +0000 (00:34 +0000)
commitb54457242c1cb772cb40645b4cd553ce38aeb2dc
tree66b9751955f33652e59dbf44809412d97c3def6c
parentf1ff3bb6806159d802948596612975cf6b730178
Rework how ObjC method inherit deprecated/availability.

New rule:
- Method decls in @implementation are considered "redeclarations"
  and inherit deprecated/availability from the @interface.
- All other cases are consider overrides, which do not inherit
  deprecated/availability.  For example:

  (a) @interface redeclares a method in an adopted protocol.
  (b) A subclass redeclares a method in a superclass.
  (c) A protocol redeclares a method from another protocol it adopts.

The idea is that API authors should have the ability to easily
move availability/deprecated up and down a class/protocol hierarchy.
A redeclaration means that the availability/deprecation is a blank
slate.

Fixes <rdar://problem/13574571>

llvm-svn: 178937
clang/lib/Sema/SemaDecl.cpp
clang/lib/Sema/SemaDeclAttr.cpp
clang/test/SemaObjC/attr-availability.m
clang/test/SemaObjC/property-deprecated-warning.m
clang/test/SemaObjC/property-noninherited-availability-attr.m