1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

LibJS/JIT: Add fast path for LeftShift

This commit is contained in:
iliadsh 2023-11-07 04:22:35 +00:00 committed by Andreas Kling
parent a1cdfe1b54
commit 1244e91481
3 changed files with 55 additions and 1 deletions

View file

@ -53,7 +53,6 @@ private:
O(LooselyEquals, abstract_equals) \
O(StrictlyInequals, typed_inequals) \
O(StrictlyEquals, typed_equals) \
O(LeftShift, left_shift) \
O(RightShift, right_shift) \
O(UnsignedRightShift, unsigned_right_shift)