[cfe-commits] r43556 - in /cfe/trunk: Sema/SemaDecl.cpp clang.xcodeproj/project.pbxproj

Fariborz Jahanian fjahanian at apple.com
Wed Oct 31 09:00:13 PDT 2007


Author: fjahanian
Date: Wed Oct 31 11:00:13 2007
New Revision: 43556

URL: http://llvm.org/viewvc/llvm-project?rev=43556&view=rev
Log:
After Anders check-in, we can now encode 'Class' type.

Modified:
    cfe/trunk/Sema/SemaDecl.cpp
    cfe/trunk/clang.xcodeproj/project.pbxproj

Modified: cfe/trunk/Sema/SemaDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Sema/SemaDecl.cpp?rev=43556&r1=43555&r2=43556&view=diff

==============================================================================
--- cfe/trunk/Sema/SemaDecl.cpp (original)
+++ cfe/trunk/Sema/SemaDecl.cpp Wed Oct 31 11:00:13 2007
@@ -1201,7 +1201,7 @@
   // 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
+  GetObjcClassType(AtCatImplLoc);
   GetObjcSelType(AtCatImplLoc);
   
   /// TODO: Check that CatName, category name, is not used in another
@@ -1280,7 +1280,7 @@
   // 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
+  GetObjcClassType(AtClassImplLoc); 
   GetObjcSelType(AtClassImplLoc);
   
   return IMPDecl;

Modified: cfe/trunk/clang.xcodeproj/project.pbxproj
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/clang.xcodeproj/project.pbxproj?rev=43556&r1=43555&r2=43556&view=diff

==============================================================================
--- cfe/trunk/clang.xcodeproj/project.pbxproj (original)
+++ cfe/trunk/clang.xcodeproj/project.pbxproj Wed Oct 31 11:00:13 2007
@@ -756,6 +756,7 @@
 		08FB7793FE84155DC02AAC07 /* Project object */ = {
 			isa = PBXProject;
 			buildConfigurationList = 1DEB923508733DC60010E9CD /* Build configuration list for PBXProject "clang" */;
+			compatibilityVersion = "Xcode 2.4";
 			hasScannedForEncodings = 1;
 			mainGroup = 08FB7794FE84155DC02AAC07 /* clang */;
 			projectDirPath = "";





More information about the cfe-commits mailing list