aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/PCHReader.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-23 03:51:49 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-23 03:51:49 +0000
commit17eee4af16ff04e10a1626fbce0e09c4a0b00321 (patch)
tree7dcfb75da14709f3ea4e4c21bafd49b3600be9f4 /lib/Frontend/PCHReader.cpp
parent8818c4fb69cb2a4eec94b217a90f94f9e075296e (diff)
Add the PCH reader stub for ObjCCompatibleAliasDecl
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69859 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReader.cpp')
-rw-r--r--lib/Frontend/PCHReader.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}