From e504fccb438049937c5e9c53c2d26564ec225ef6 Mon Sep 17 00:00:00 2001 From: Cameron Kaiser Date: Mon, 7 Jan 2019 20:33:19 -0800 Subject: [PATCH] followup to #534: M1502013 for testing in FPR12 --- js/src/jit/IonAnalysis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/jit/IonAnalysis.cpp b/js/src/jit/IonAnalysis.cpp index 0fe5b38f8..bc889ad95 100644 --- a/js/src/jit/IonAnalysis.cpp +++ b/js/src/jit/IonAnalysis.cpp @@ -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);