From 6e7e8cc19d05b361f53d44022fa9f696d672c7d9 Mon Sep 17 00:00:00 2001 From: Fariborz Jahanian Date: Thu, 22 Jul 2010 18:24:20 +0000 Subject: atch for implementation of objective-c's -Wselector warning flag in clang. Little more to do for a PCH issue. Radar 6507158. llvm-svn: 109129 --- clang/lib/Frontend/PCHWriterDecl.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'clang/lib/Frontend/PCHWriterDecl.cpp') diff --git a/clang/lib/Frontend/PCHWriterDecl.cpp b/clang/lib/Frontend/PCHWriterDecl.cpp index f6c6cde1577..7c4a21adb65 100644 --- a/clang/lib/Frontend/PCHWriterDecl.cpp +++ b/clang/lib/Frontend/PCHWriterDecl.cpp @@ -312,6 +312,7 @@ void PCHDeclWriter::VisitObjCMethodDecl(ObjCMethodDecl *D) { Record.push_back(D->isInstanceMethod()); Record.push_back(D->isVariadic()); Record.push_back(D->isSynthesized()); + Record.push_back(D->isDefined()); // FIXME: stable encoding for @required/@optional Record.push_back(D->getImplementationControl()); // FIXME: stable encoding for in/out/inout/bycopy/byref/oneway -- cgit v1.2.3