Commit eabd69b8 authored by Nicolas B. Pierron's avatar Nicolas B. Pierron
Browse files

Bug 1502013 - RemoveUnmarkedBlocks should only mark operands of removed blocks. r=jandem

parent 8b2a2c94
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2559,7 +2559,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;
            }