diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-11-25 23:07:42 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-11-25 23:07:42 +0000 |
commit | 369a3bd9979cf529eed529aa037de713c213e47d (patch) | |
tree | f0d5f7515c56496bc4d72cd23d1dff7368f73ae0 /lib/Frontend/PCHReader.cpp | |
parent | 1b2fc0f3e181d99fb34f60e711066fb11628ecd0 (diff) |
Allow user re-definition of SEL as well as accessing its fields.
This fixes pr5611.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89895 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReader.cpp')
-rw-r--r-- | lib/Frontend/PCHReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp index 9c771e0473..dc102bb6e0 100644 --- a/lib/Frontend/PCHReader.cpp +++ b/lib/Frontend/PCHReader.cpp @@ -1558,7 +1558,7 @@ void PCHReader::InitializeContext(ASTContext &Ctx) { // FIXME. Accommodate for this in several PCH/Index tests if (unsigned ObjCSelRedef = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SEL_REDEFINITION]) - Context->ObjCSELRedefinitionType = GetType(ObjCSelRedef); + Context->ObjCSelRedefinitionType = GetType(ObjCSelRedef); #endif if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_DESCRIPTOR]) Context->setBlockDescriptorType(GetType(String)); |