Substituted all instances of the string "Objc" for "ObjC".  This fixes
some naming inconsistencies in the names of classes pertaining to Objective-C
support in clang.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45715 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Sema/SemaChecking.cpp b/Sema/SemaChecking.cpp
index bd9ef0c..61c67f0 100644
--- a/Sema/SemaChecking.cpp
+++ b/Sema/SemaChecking.cpp
@@ -560,7 +560,7 @@
 static DeclRefExpr* EvalAddr(Expr *E) {
   // We should only be called for evaluating pointer expressions.
   assert((E->getType()->isPointerType() || 
-          E->getType()->isObjcQualifiedIdType()) &&
+          E->getType()->isObjCQualifiedIdType()) &&
          "EvalAddr only works on pointers");
     
   // Our "symbolic interpreter" is just a dispatch off the currently
@@ -621,7 +621,7 @@
     Expr* SubExpr = IE->getSubExpr();
     
     if (SubExpr->getType()->isPointerType() ||
-        SubExpr->getType()->isObjcQualifiedIdType())
+        SubExpr->getType()->isObjCQualifiedIdType())
       return EvalAddr(SubExpr);
     else
       return EvalVal(SubExpr);