diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-04-23 02:53:57 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-04-23 02:53:57 +0000 |
commit | 10b0e1fa3aabd8877dbbc0df1f2414e04afd5fdd (patch) | |
tree | 88b68353398039fade287adc953f59661befb68a /lib/Frontend/PCHWriter.cpp | |
parent | 2c2d43c557beca1b4ba4bd743f33978aecb46a97 (diff) |
PCH support for ObjCCategoryImplDecl (which can't be tested now).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69856 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHWriter.cpp')
-rw-r--r-- | lib/Frontend/PCHWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/PCHWriter.cpp b/lib/Frontend/PCHWriter.cpp index 36d9170f38..0a0a38d874 100644 --- a/lib/Frontend/PCHWriter.cpp +++ b/lib/Frontend/PCHWriter.cpp @@ -500,7 +500,7 @@ void PCHDeclWriter::VisitObjCImplDecl(ObjCImplDecl *D) { void PCHDeclWriter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { VisitObjCImplDecl(D); - // FIXME: Implement. + Writer.AddIdentifierRef(D->getIdentifier(), Record); Code = pch::DECL_OBJC_CATEGORY_IMPL; } |