summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/dealloc.m
Commit message (Collapse)AuthorAgeFilesLines
* Objective-C. Fixes a bug where "new" family attributeFariborz Jahanian2014-01-281-0/+14
| | | | | | | | was not being overridden in the category method implementation resulting in bogus warning. // rdar://15919775 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200342 91177308-0d34-0410-b5e6-96231b3b80d8
* ObjectiveC. Fixes the sentence in a diagnostic.Fariborz Jahanian2013-12-181-1/+1
| | | | | | | // rdar://15397430 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197586 91177308-0d34-0410-b5e6-96231b3b80d8
* ObjectiveC. typo fix in my last patch,Fariborz Jahanian2013-12-181-2/+2
| | | | | | | per Jordan's review. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197540 91177308-0d34-0410-b5e6-96231b3b80d8
* Objctive-C. warn if dealloc is being overridden inFariborz Jahanian2013-12-171-2/+18
| | | | | | | a category implementation. // rdar://15397430 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@197534 91177308-0d34-0410-b5e6-96231b3b80d8
* Add 'not' to commands that are expected to fail.Rafael Espindola2013-07-041-1/+1
| | | | | | | This is at least good documentation, but also opens the possibility of using pipefail. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185652 91177308-0d34-0410-b5e6-96231b3b80d8
* objective-c arc: ARC IRGen correctly assumes resultFariborz Jahanian2012-07-301-0/+25
type of generated call to super dealloc is 'void' and asserts if user's dealloc is not of 'void type. This rule must be enforced in clang front-end (with a fixit) if this is not the case, instead of asserting in CodeGen. // rdar://11987838 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160993 91177308-0d34-0410-b5e6-96231b3b80d8