mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibJS: Fix AbstractInequals returning result of AbstractEquals
This commit is contained in:
parent
ae763f1ade
commit
6e2b266534
Notes:
sideshowbarker
2024-07-18 12:41:08 +09:00
Author: https://github.com/ryangjchandler
Commit: 6e2b266534
Pull-request: https://github.com/SerenityOS/serenity/pull/7888
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