aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaDeclObjC.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2011-08-22 19:07:43 +0000
committerTed Kremenek <kremenek@apple.com>2011-08-22 19:07:43 +0000
commit4eb14ca3ded87493ddfab73cf4be7fc24c3d48ea (patch)
tree8ea39103968ce0fe703ce5261e08a043d0720eb1 /lib/Sema/SemaDeclObjC.cpp
parentedf4daead543ab594012ef1704c7c5dd0a93f45f (diff)
Do not perform check for missing '[super dealloc]' under ARC as calling -dealloc is illegal in that mode.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDeclObjC.cpp')
-rw-r--r--lib/Sema/SemaDeclObjC.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Sema/SemaDeclObjC.cpp b/lib/Sema/SemaDeclObjC.cpp
index 92fe9ec6ee..7a9d6d5072 100644
--- a/lib/Sema/SemaDeclObjC.cpp
+++ b/lib/Sema/SemaDeclObjC.cpp
@@ -292,7 +292,9 @@ void Sema::ActOnStartOfObjCMethodDef(Scope *FnBodyScope, Decl *D) {
// Finally, in ActOnFinishFunctionBody() (SemaDecl), warn if flag is set.
// Only do this if the current class actually has a superclass.
if (IC->getSuperClass())
- ObjCShouldCallSuperDealloc = MDecl->getMethodFamily() == OMF_dealloc;
+ ObjCShouldCallSuperDealloc =
+ !Context.getLangOptions().ObjCAutoRefCount &&
+ MDecl->getMethodFamily() == OMF_dealloc;
}
}