From: Douglas Gregor Date: Thu, 23 Apr 2009 03:51:49 +0000 (+0000) Subject: Add the PCH reader stub for ObjCCompatibleAliasDecl X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17eee4af16ff04e10a1626fbce0e09c4a0b00321;p=clang Add the PCH reader stub for ObjCCompatibleAliasDecl git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69859 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp index 0791143a00..72dda6cc6e 100644 --- a/lib/Frontend/PCHReader.cpp +++ b/lib/Frontend/PCHReader.cpp @@ -2280,7 +2280,7 @@ Decl *PCHReader::ReadDeclRecord(uint64_t Offset, unsigned Index) { } case pch::DECL_OBJC_COMPATIBLE_ALIAS: { - // FIXME: Implement. + D = ObjCCompatibleAliasDecl::Create(Context, 0, SourceLocation(), 0, 0); break; }