1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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
This commit is contained in:
Michael Gottesman 2013-01-03 08:09:27 +00:00
parent 27dfca0765
commit a67b835abe

View 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*.