1) More additions for objective-c's qualifier type.
2) Fixed a test failure (which should have failed all along!).

llvm-svn: 43589
diff --git a/clang/Driver/RewriteTest.cpp b/clang/Driver/RewriteTest.cpp
index 257a060..999b079 100644
--- a/clang/Driver/RewriteTest.cpp
+++ b/clang/Driver/RewriteTest.cpp
@@ -555,8 +555,7 @@
   
   int NumIvars = CDecl->getIntfDeclNumIvars();
   // If no ivars and no root or if its root, directly or indirectly,
-  // have no ivars (thus not synthesize)
-  // then no need to synthesize this class either.
+  // have no ivars (thus not synthesized) then no need to synthesize this class.
   if (NumIvars <= 0 && (!RCDecl || !ObjcSynthesizedStructs.count(RCDecl)))
     return;