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/Frontend/PCHReaderStmt.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/Frontend/PCHReaderStmt.cpp')
-rw-r--r-- | lib/Frontend/PCHReaderStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/PCHReaderStmt.cpp b/lib/Frontend/PCHReaderStmt.cpp index 4d56b1b85b..f39d961147 100644 --- a/lib/Frontend/PCHReaderStmt.cpp +++ b/lib/Frontend/PCHReaderStmt.cpp @@ -749,7 +749,7 @@ unsigned PCHStmtReader::VisitObjCImplctSetterGetterRefExpr( cast_or_null<ObjCMethodDecl>(Reader.GetDecl(Record[Idx++]))); E->setSetterMethod( cast_or_null<ObjCMethodDecl>(Reader.GetDecl(Record[Idx++]))); - E->setClassProp( + E->setInterfaceDecl( cast_or_null<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++]))); E->setBase(cast_or_null<Expr>(StmtStack.back())); E->setLocation(SourceLocation::getFromRawEncoding(Record[Idx++])); |