Rename isTrackedObjectType() -> isTrackedObjCObjectType().


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70657 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/CFRefCount.cpp b/lib/Analysis/CFRefCount.cpp
index b4f8782..38169fb 100644
--- a/lib/Analysis/CFRefCount.cpp
+++ b/lib/Analysis/CFRefCount.cpp
@@ -648,7 +648,7 @@
   void InitializeClassMethodSummaries();
   void InitializeMethodSummaries();
   
-  bool isTrackedObjectType(QualType T);
+  bool isTrackedObjCObjectType(QualType T);
   
 private:
   
@@ -865,7 +865,7 @@
 // Predicates.
 //===----------------------------------------------------------------------===//
 
-bool RetainSummaryManager::isTrackedObjectType(QualType Ty) {
+bool RetainSummaryManager::isTrackedObjCObjectType(QualType Ty) {
   if (!Ctx.isObjCObjectPointerType(Ty))
     return false;
 
@@ -1142,7 +1142,7 @@
   bool hasEffect = false;
   RetEffect RE = RetEffect::MakeNoRet();
   
-  if (isTrackedObjectType(MD->getResultType())) {
+  if (isTrackedObjCObjectType(MD->getResultType())) {
     if (MD->getAttr<ObjCOwnershipReturnsAttr>()) {
       RE = isGCEnabled() ? RetEffect::MakeGCNotOwned()
                          : RetEffect::MakeOwned(RetEffect::ObjC, true);
@@ -1230,7 +1230,7 @@
   }
   
   // Look for methods that return an owned object.
-  if (!isTrackedObjectType(RetTy)) {
+  if (!isTrackedObjCObjectType(RetTy)) {
     if (ScratchArgs.empty() && ReceiverEff == DoNothing)
       return 0;