diff options
author | John McCall <rjmccall@apple.com> | 2010-06-04 20:50:08 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-06-04 20:50:08 +0000 |
commit | 83a230c83a54190366138c1a4f4310ef838b88fc (patch) | |
tree | ca4f5838d56aee700c290b7f3526a59570fe3532 /lib/Frontend/PCHWriterDecl.cpp | |
parent | 89f9d3a7651d1225f3f56ae3387c83b98a26da00 (diff) |
Remember type source information for Objective C property declarations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105484 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHWriterDecl.cpp')
-rw-r--r-- | lib/Frontend/PCHWriterDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/PCHWriterDecl.cpp b/lib/Frontend/PCHWriterDecl.cpp index 8eeef7c741..499a16adb1 100644 --- a/lib/Frontend/PCHWriterDecl.cpp +++ b/lib/Frontend/PCHWriterDecl.cpp @@ -359,7 +359,7 @@ void PCHDeclWriter::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D) { void PCHDeclWriter::VisitObjCPropertyDecl(ObjCPropertyDecl *D) { VisitNamedDecl(D); Writer.AddSourceLocation(D->getAtLoc(), Record); - Writer.AddTypeRef(D->getType(), Record); + Writer.AddTypeSourceInfo(D->getTypeSourceInfo(), Record); // FIXME: stable encoding Record.push_back((unsigned)D->getPropertyAttributes()); // FIXME: stable encoding |