diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-18 21:37:33 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-18 21:37:33 +0000 |
commit | d2ae5aa732e8587816fd7a7be911460e337c178e (patch) | |
tree | 68ff1f4b8440cd5518b48b28c405394220b89159 /lib/AST/StmtProfile.cpp | |
parent | 109b13db3391face0b393c730f0326ca51d25b52 (diff) |
Renamed ClassProp data member of ObjCImplctSetterGetterRefExpr
to InterfaceDecl, as it is unrelated to any property and
holds the InterfaceDecl needed for accessing class getter/setter
methods using the dot-syntax.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79371 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/StmtProfile.cpp')
-rw-r--r-- | lib/AST/StmtProfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/StmtProfile.cpp b/lib/AST/StmtProfile.cpp index cb32e8d25f..1feee3880a 100644 --- a/lib/AST/StmtProfile.cpp +++ b/lib/AST/StmtProfile.cpp @@ -588,7 +588,7 @@ void StmtProfiler::VisitObjCImplctSetterGetterRefExpr( VisitExpr(S); VisitDecl(S->getGetterMethod()); VisitDecl(S->getSetterMethod()); - VisitDecl(S->getClassProp()); + VisitDecl(S->getInterfaceDecl()); } void StmtProfiler::VisitObjCMessageExpr(ObjCMessageExpr *S) { |