]> granicus.if.org Git - clang/commitdiff
Add the PCH reader stub for ObjCCompatibleAliasDecl
authorDouglas Gregor <dgregor@apple.com>
Thu, 23 Apr 2009 03:51:49 +0000 (03:51 +0000)
committerDouglas Gregor <dgregor@apple.com>
Thu, 23 Apr 2009 03:51:49 +0000 (03:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69859 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Frontend/PCHReader.cpp

index 0791143a00c270afc1699d8c3f34a19f64d5bd0a..72dda6cc6e9540e8bef6799592019b46bf514b73 100644 (file)
@@ -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;
   }