followup to #534: M1502013 for testing in FPR12

This commit is contained in:
Cameron Kaiser 2019-01-07 20:33:19 -08:00
parent 69249a563c
commit e504fccb43
1 changed files with 1 additions and 1 deletions

View File

@ -1999,7 +1999,7 @@ jit::RemoveUnmarkedBlocks(MIRGenerator* mir, MIRGraph& graph, uint32_t numMarked
// bailout.
for (PostorderIterator it(graph.poBegin()); it != graph.poEnd();) {
MBasicBlock* block = *it++;
if (!block->isMarked())
if (block->isMarked())
continue;
FlagAllOperandsAsHavingRemovedUses(mir, block);