diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-11-22 18:39:36 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-11-22 18:39:36 +0000 |
commit | 5daf570d0ce027e18ed5f9d66e6b2a14a40b720d (patch) | |
tree | e554d26d58de550daf74b397b4e2e894927080df /lib/Analysis/CheckObjCDealloc.cpp | |
parent | e4c452c4c7b9124fe94a96f559ff077d59cdf996 (diff) |
New AST node to access "implicit" setter/getter using property dor syntax.
Issuing diagnostics when assigning to read-only properties.
This is work in progress.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59874 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CheckObjCDealloc.cpp')
-rw-r--r-- | lib/Analysis/CheckObjCDealloc.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Analysis/CheckObjCDealloc.cpp b/lib/Analysis/CheckObjCDealloc.cpp index 8628ff122c..6fba9aeea9 100644 --- a/lib/Analysis/CheckObjCDealloc.cpp +++ b/lib/Analysis/CheckObjCDealloc.cpp @@ -72,8 +72,7 @@ static bool scan_ivar_release(Stmt* S, ObjCIvarDecl* ID, if (BO->isAssignmentOp()) if(ObjCPropertyRefExpr* PRE = dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParenCasts())) - if(PRE->getKind() == ObjCPropertyRefExpr::PropertyRef && - PRE->getProperty() == PD) + if(PRE->getProperty() == PD) if(BO->getRHS()->isNullPointerConstant(Ctx)) return true; |