Added new type and bitfield fields in some decl types in preparation for objective-c's type qualifiers.
Added initialization of Class/SEMA types.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43534 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Sema/SemaDecl.cpp b/Sema/SemaDecl.cpp
index 4f59fe1..861c31e 100644
--- a/Sema/SemaDecl.cpp
+++ b/Sema/SemaDecl.cpp
@@ -1201,6 +1201,8 @@
// somewhere else. At this time, this is a good enough place to do type
// encoding of methods and ivars for the rewrite client.
GetObjcIdType(AtCatImplLoc);
+ // GetObjcClassType(AtCatImplLoc); NYI
+ GetObjcSelType(AtCatImplLoc);
/// TODO: Check that CatName, category name, is not used in another
// implementation.
@@ -1278,6 +1280,8 @@
// somewhere else. At this time, this is a good enough place to do type
// encoding of methods and ivars for the rewrite client.
GetObjcIdType(AtClassImplLoc);
+ // GetObjcClassType(AtClassImplLoc); NYI
+ GetObjcSelType(AtClassImplLoc);
return IMPDecl;
}