From 6e2b26653416612da7f073babe676f5b237fc94a Mon Sep 17 00:00:00 2001 From: Ryan Chandler Date: Mon, 7 Jun 2021 19:23:17 +0100 Subject: [PATCH] LibJS: Fix AbstractInequals returning result of AbstractEquals --- Userland/Libraries/LibJS/Bytecode/Op.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Bytecode/Op.h b/Userland/Libraries/LibJS/Bytecode/Op.h index f153440c3f..070856a4bb 100644 --- a/Userland/Libraries/LibJS/Bytecode/Op.h +++ b/Userland/Libraries/LibJS/Bytecode/Op.h @@ -225,7 +225,7 @@ private: class AbstractInequals final : public Instruction { public: AbstractInequals(Register dst, Register src1, Register src2) - : Instruction(Type::AbstractEquals) + : Instruction(Type::AbstractInequals) , m_dst(dst) , m_src1(src1) , m_src2(src2)