mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 06:18:38 +09:00
Fix mistakingly flagged instructions.
This enables optimizations which were wrongly inhibited before by this typo.
This commit is contained in:
parent
f3de54e835
commit
e4ac0e17f8
1 changed files with 1 additions and 1 deletions
|
|
@ -2306,7 +2306,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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue