1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibJS: Mark FinishUnwind as a terminator

This commit is contained in:
Hendiadyoin1 2022-11-02 14:54:57 +01:00 committed by Ali Mohammad Pur
parent ded7545db1
commit 6998b72d22

View file

@ -783,6 +783,8 @@ public:
class FinishUnwind final : public Instruction {
public:
constexpr static bool IsTerminator = true;
FinishUnwind(Label next)
: Instruction(Type::FinishUnwind)
, m_next_target(move(next))