| Index: src/interpreter/bytecode-flags.h
|
| diff --git a/src/interpreter/bytecode-flags.h b/src/interpreter/bytecode-flags.h
|
| index 6e87ce20b23c41d3287ce0e156c362334ceb3c2d..45876bdfe8d723a80e2c3ad10c4b5d22d93b0586 100644
|
| --- a/src/interpreter/bytecode-flags.h
|
| +++ b/src/interpreter/bytecode-flags.h
|
| @@ -13,7 +13,7 @@ namespace interpreter {
|
|
|
| class CreateArrayLiteralFlags {
|
| public:
|
| - class FlagsBits : public BitField8<int, 0, 3> {};
|
| + class FlagsBits : public BitField8<int, 0, 5> {};
|
| class FastShallowCloneBit : public BitField8<bool, FlagsBits::kNext, 1> {};
|
|
|
| static uint8_t Encode(bool use_fast_shallow_clone, int runtime_flags);
|
| @@ -24,7 +24,7 @@ class CreateArrayLiteralFlags {
|
|
|
| class CreateObjectLiteralFlags {
|
| public:
|
| - class FlagsBits : public BitField8<int, 0, 3> {};
|
| + class FlagsBits : public BitField8<int, 0, 5> {};
|
| class FastClonePropertiesCountBits
|
| : public BitField8<int, FlagsBits::kNext, 3> {};
|
|
|
|
|