diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-01-03 08:09:27 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-01-03 08:09:27 +0000 |
commit | 50ae5b28e93061a87b4c8fcbcf89af2227f764af (patch) | |
tree | 5d2be6ab937aa755bd0ff447cba58436702728c0 /llvm/lib | |
parent | ef682c54307abd6b23bde2bd83688ef117daea03 (diff) | |
download | bcm5719-llvm-50ae5b28e93061a87b4c8fcbcf89af2227f764af.tar.gz bcm5719-llvm-50ae5b28e93061a87b4c8fcbcf89af2227f764af.zip |
Changed two debug statements that state that a queue had finished being processed when said queue was really a list to state a list had finished being processed.
llvm-svn: 171465
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/ObjCARC.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/ObjCARC.cpp b/llvm/lib/Transforms/Scalar/ObjCARC.cpp index 403e0647893..116cc8b8507 100644 --- a/llvm/lib/Transforms/Scalar/ObjCARC.cpp +++ b/llvm/lib/Transforms/Scalar/ObjCARC.cpp @@ -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*. |