diff options
author | Mike Stump <mrs@apple.com> | 2009-10-22 00:49:09 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-10-22 00:49:09 +0000 |
commit | 083c25eea14bb4cc4ecc3ec763c60e2e609e22bd (patch) | |
tree | 722fc6df1c643f519bf978f6ffb1ffcd229cc34d /lib/Frontend/PCHReader.cpp | |
parent | 080fb19301b1d0ce4149d99b8961e77f7ed4bb2e (diff) |
Extend out the block descriptor structure for debug information with
the copy/dispose helpers as appropriate.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84817 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReader.cpp')
-rw-r--r-- | lib/Frontend/PCHReader.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp index 82e5033dd8..c02959f2cc 100644 --- a/lib/Frontend/PCHReader.cpp +++ b/lib/Frontend/PCHReader.cpp @@ -1591,6 +1591,9 @@ void PCHReader::InitializeContext(ASTContext &Ctx) { Context->ObjCClassRedefinitionType = GetType(ObjCClassRedef); if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_DESCRIPTOR]) Context->setBlockDescriptorType(GetType(String)); + if (unsigned String + = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_EXTENDED_DESCRIPTOR]) + Context->setBlockDescriptorExtendedType(GetType(String)); } /// \brief Retrieve the name of the original source file name |