diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-07-22 18:24:20 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-07-22 18:24:20 +0000 |
commit | 6e7e8cc19d05b361f53d44022fa9f696d672c7d9 (patch) | |
tree | c9ea616bfeee961181fa17e4f6a1db3196036167 /clang/lib/Frontend/PCHWriterDecl.cpp | |
parent | a11b4bfcbeaa9ccbd0a8c709f9b36c24a8734ef1 (diff) | |
download | bcm5719-llvm-6e7e8cc19d05b361f53d44022fa9f696d672c7d9.tar.gz bcm5719-llvm-6e7e8cc19d05b361f53d44022fa9f696d672c7d9.zip |
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
Diffstat (limited to 'clang/lib/Frontend/PCHWriterDecl.cpp')
-rw-r--r-- | clang/lib/Frontend/PCHWriterDecl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 |