[objc-arc] Added debug statement saying when we are resetting a sequence's progress.

This will make it clearer when we are actually resetting a sequence's progress
vs just changing state. This is an important distinction because the former case
clears any pointers that we are tracking while the later does not.

llvm-svn: 179963
This commit is contained in:
Michael Gottesman 2013-04-20 23:36:57 +00:00
parent 74d0c1eeef
commit 01338a442a
1 changed files with 1 additions and 0 deletions

View File

@ -472,6 +472,7 @@ namespace {
}
void ResetSequenceProgress(Sequence NewSeq) {
DEBUG(dbgs() << "Resetting sequence progress.\n");
SetSeq(NewSeq);
Partial = false;
RRI.clear();