Fixed typo.

llvm-svn: 173202
This commit is contained in:
Michael Gottesman 2013-01-22 21:53:43 +00:00
parent 8eb9360a37
commit 1b1c476a4c

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;