Fixed typo.

llvm-svn: 173202
This commit is contained in:
Michael Gottesman 2013-01-22 21:53:43 +00:00
parent 9de6f96ad5
commit 8b5515fa1b
1 changed files with 1 additions and 2 deletions

View File

@ -3576,9 +3576,8 @@ ObjCARCOpt::ConnectTDBUTraversals(DenseMap<const BasicBlock *, BBState>
Changed = true;
assert(OldCount != 0 && "Unreachable code?");
NumRRs += OldCount - NewCount;
// Set to true if we completely removed any RR pairs.
AnyPairsCompletelyEliminated |= NewCount == 0;
AnyPairsCompletelyEliminated = NewCount == 0;
// We can move calls!
return true;