mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:27:45 +00:00
LibJS: Fix AbstractInequals returning result of AbstractEquals
This commit is contained in:
parent
ae763f1ade
commit
6e2b266534
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue