Implemented access check for ivars accessed inside
c-style functions declared inside objc @implementations.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66087 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/PrintParserCallbacks.cpp b/Driver/PrintParserCallbacks.cpp
index 0a6d09a..7600378 100644
--- a/Driver/PrintParserCallbacks.cpp
+++ b/Driver/PrintParserCallbacks.cpp
@@ -517,7 +517,8 @@
                                                       SourceLocation OpLoc,
                                                       tok::TokenKind OpKind,
                                                       SourceLocation MemberLoc,
-                                                      IdentifierInfo &Member) {
+                                                      IdentifierInfo &Member,
+                                                      DeclTy *ImplDecl) {
       llvm::cout << __FUNCTION__ << "\n";
       return ExprEmpty();
     }