Allow user re-definition of SEL as well as accessing its fields.
This fixes pr5611.
llvm-svn: 89895
diff --git a/clang/lib/Frontend/PCHReader.cpp b/clang/lib/Frontend/PCHReader.cpp
index 9c771e0..dc102bb 100644
--- a/clang/lib/Frontend/PCHReader.cpp
+++ b/clang/lib/Frontend/PCHReader.cpp
@@ -1558,7 +1558,7 @@
// 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));