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/CodeGen/CGExprScalar.cpp b/CodeGen/CGExprScalar.cpp
index 023e907..a76f1e1 100644
--- a/CodeGen/CGExprScalar.cpp
+++ b/CodeGen/CGExprScalar.cpp
@@ -1001,7 +1001,7 @@
 Value *ScalarExprEmitter::VisitObjCEncodeExpr(const ObjCEncodeExpr *E) {
   std::string str;
   
-  CGF.getContext().getObjcEncodingForType(E->getEncodedType(), str);
+  CGF.getContext().getObjCEncodingForType(E->getEncodedType(), str);
   
   llvm::Constant *C = llvm::ConstantArray::get(str);
   C = new llvm::GlobalVariable(C->getType(), true, 
diff --git a/CodeGen/CodeGenTypes.cpp b/CodeGen/CodeGenTypes.cpp
index bd6a06f..0de6dc8 100644
--- a/CodeGen/CodeGenTypes.cpp
+++ b/CodeGen/CodeGenTypes.cpp
@@ -265,15 +265,15 @@
     return llvm::FunctionType::get(ResultType, ArgTys, isVarArg);
   }
 
-  case Type::ObjcInterface:
+  case Type::ObjCInterface:
     assert(0 && "FIXME: add missing functionality here");
     break;
       
-  case Type::ObjcQualifiedInterface:
+  case Type::ObjCQualifiedInterface:
     assert(0 && "FIXME: add missing functionality here");
     break;
 
-  case Type::ObjcQualifiedId:
+  case Type::ObjCQualifiedId:
     assert(0 && "FIXME: add missing functionality here");
     break;