mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 04:25:13 +00:00
LibJS: Fix mix-up between assignment and comparison
This commit is contained in:
parent
00b4976f2c
commit
be7bc41470
Notes:
sideshowbarker
2024-07-17 05:13:53 +09:00
Author: https://github.com/BertalanD Commit: https://github.com/SerenityOS/serenity/commit/be7bc41470 Pull-request: https://github.com/SerenityOS/serenity/pull/18597 Reviewed-by: https://github.com/kleinesfilmroellchen ✅
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);
|
||||
}
|
||||
} else {
|
||||
VERIFY(unwind_frames.last() = &frame);
|
||||
VERIFY(unwind_frames.last() == &frame);
|
||||
unwind_frames.take_last();
|
||||
VERIFY(frame.finalizer_targets.is_empty());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue