mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
LibJS: Don't make Bytecode::Operand::Type an u8 outside of aarch64
This is a slightly mystified attempt to recover the performance regression seen on our JS benchmark runner after3c2a2bb39fandc7bba505ea. With this change,c7bba505eais effectively reverted from the perspective of x86_64.
This commit is contained in:
parent
ee6b2db009
commit
e695dc1405
|
|
@ -13,7 +13,11 @@ namespace JS::Bytecode {
|
|||
|
||||
class Operand {
|
||||
public:
|
||||
enum class Type : u8 {
|
||||
enum class Type
|
||||
#if ARCH(AARCH64)
|
||||
: u8
|
||||
#endif
|
||||
{
|
||||
Invalid,
|
||||
Register,
|
||||
Local,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user