Changed two debug statements that state that a queue had finished being processed...
authorMichael Gottesman <mgottesman@apple.com>
Thu, 3 Jan 2013 08:09:27 +0000 (08:09 +0000)
committerMichael Gottesman <mgottesman@apple.com>
Thu, 3 Jan 2013 08:09:27 +0000 (08:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171465 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/ObjCARC.cpp

index 403e06478930962023af032e1862a8ea8aae8bd4..116cc8b85074396a1f4f490e58b344bedb5a95d2 100644 (file)
@@ -912,7 +912,7 @@ bool ObjCARCExpand::runOnFunction(Function &F) {
     }
   }
   
-  DEBUG(dbgs() << "ObjCARCExpand: Finished Queue.\n\n");
+  DEBUG(dbgs() << "ObjCARCExpand: Finished List.\n\n");
   
   return Changed;
 }
@@ -4194,7 +4194,7 @@ bool ObjCARCContract::runOnFunction(Function &F) {
       continue;
     }
 
-    DEBUG(dbgs() << "ObjCARCContract: Finished Queue.\n\n");
+    DEBUG(dbgs() << "ObjCARCContract: Finished List.\n\n");
 
     // Don't use GetObjCArg because we don't want to look through bitcasts
     // and such; to do the replacement, the argument must have type i8*.