mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:07:36 +00:00
LibJS: Fix mix-up between assignment and comparison
This commit is contained in:
parent
00b4976f2c
commit
be7bc41470
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ static void generate_cfg_for_block(BasicBlock const& current_block, PassPipeline
|
||||||
generate_cfg_for_block(*block, executable);
|
generate_cfg_for_block(*block, executable);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
VERIFY(unwind_frames.last() = &frame);
|
VERIFY(unwind_frames.last() == &frame);
|
||||||
unwind_frames.take_last();
|
unwind_frames.take_last();
|
||||||
VERIFY(frame.finalizer_targets.is_empty());
|
VERIFY(frame.finalizer_targets.is_empty());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue