diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-08 16:37:44 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-08 16:37:44 +0000 |
commit | 643b7dfb7803003d62e18da65cbe81ad001851b7 (patch) | |
tree | 37cb0cb609eaf04562f1afb9890311f9d9b8ed2c /lib/Frontend/PCHReaderDecl.cpp | |
parent | cb3f20ded288518be8559d2057d5059fadcf3bb6 (diff) |
Patch adds test to my previous patch for assigning to
gc'able structs in the Next runtime and adds missing
PCH info.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75014 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReaderDecl.cpp')
-rw-r--r-- | lib/Frontend/PCHReaderDecl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Frontend/PCHReaderDecl.cpp b/lib/Frontend/PCHReaderDecl.cpp index 94e46acac3..308d73febf 100644 --- a/lib/Frontend/PCHReaderDecl.cpp +++ b/lib/Frontend/PCHReaderDecl.cpp @@ -128,6 +128,7 @@ void PCHDeclReader::VisitRecordDecl(RecordDecl *RD) { VisitTagDecl(RD); RD->setHasFlexibleArrayMember(Record[Idx++]); RD->setAnonymousStructOrUnion(Record[Idx++]); + RD->setHasObjectMember(Record[Idx++]); } void PCHDeclReader::VisitValueDecl(ValueDecl *VD) { |