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

LibJS/JIT: Add fast path for UnsignedRightShift

This commit is contained in:
iliadsh 2023-11-07 04:28:12 +00:00 committed by Andreas Kling
parent c956316c98
commit 24d5070520
3 changed files with 56 additions and 2 deletions

View file

@ -52,8 +52,7 @@ private:
O(LooselyInequals, abstract_inequals) \
O(LooselyEquals, abstract_equals) \
O(StrictlyInequals, typed_inequals) \
O(StrictlyEquals, typed_equals) \
O(UnsignedRightShift, unsigned_right_shift)
O(StrictlyEquals, typed_equals)
# define JS_ENUMERATE_NEW_BUILTIN_ERROR_BYTECODE_OPS(O) \
O(NewTypeError, new_type_error, TypeError)