Fixed typo.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173202 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael Gottesman 2013-01-22 21:53:43 +00:00
parent 862d51fc67
commit e65d46246c

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;