| Index: src/interpreter/bytecode-flags.cc
|
| diff --git a/src/interpreter/bytecode-flags.cc b/src/interpreter/bytecode-flags.cc
|
| index 172f63ed002f38990e3052e10b3013ee93b34d9d..c5021c02d45b6f3b633210ad09d83c701ffd286d 100644
|
| --- a/src/interpreter/bytecode-flags.cc
|
| +++ b/src/interpreter/bytecode-flags.cc
|
| @@ -29,11 +29,10 @@ uint8_t CreateObjectLiteralFlags::Encode(bool fast_clone_supported,
|
| uint8_t result = FlagsBits::encode(runtime_flags);
|
| if (fast_clone_supported) {
|
| STATIC_ASSERT(
|
| - ConstructorBuiltinsAssembler::kMaximumClonedShallowObjectProperties <=
|
| + ConstructorBuiltins::kMaximumClonedShallowObjectProperties <=
|
| 1 << CreateObjectLiteralFlags::FastClonePropertiesCountBits::kShift);
|
| - DCHECK_LE(
|
| - properties_count,
|
| - ConstructorBuiltinsAssembler::kMaximumClonedShallowObjectProperties);
|
| + DCHECK_LE(properties_count,
|
| + ConstructorBuiltins::kMaximumClonedShallowObjectProperties);
|
| result |= CreateObjectLiteralFlags::FastClonePropertiesCountBits::encode(
|
| properties_count);
|
| }
|
|
|