| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index b85601c012659f34800cba3b5aa70d7522c8d7f7..ba90399119307171fd4a9caa3ae514c9a1428e86 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -7181,9 +7181,9 @@ class SharedFunctionInfo: public HeapObject {
|
| kAllowLazyCompilation,
|
| kAllowLazyCompilationWithoutContext,
|
| kOptimizationDisabled,
|
| + kNeverCompiled,
|
| kNative,
|
| kStrictModeFunction,
|
| - kStrongModeFunction,
|
| kUsesArguments,
|
| kNeedsHomeObject,
|
| // byte 1
|
| @@ -7207,7 +7207,6 @@ class SharedFunctionInfo: public HeapObject {
|
| kIsSetterFunction,
|
| // byte 3
|
| kDeserialized,
|
| - kNeverCompiled,
|
| kIsDeclaration,
|
| kCompilerHintsCount, // Pseudo entry
|
| };
|
| @@ -7257,8 +7256,6 @@ class SharedFunctionInfo: public HeapObject {
|
| // native tests when using integer-width instructions.
|
| static const int kStrictModeBit =
|
| kStrictModeFunction + kCompilerHintsSmiTagSize;
|
| - static const int kStrongModeBit =
|
| - kStrongModeFunction + kCompilerHintsSmiTagSize;
|
| static const int kNativeBit = kNative + kCompilerHintsSmiTagSize;
|
|
|
| static const int kClassConstructorBits =
|
| @@ -7269,7 +7266,6 @@ class SharedFunctionInfo: public HeapObject {
|
| // native tests.
|
| // Allows to use byte-width instructions.
|
| static const int kStrictModeBitWithinByte = kStrictModeBit % kBitsPerByte;
|
| - static const int kStrongModeBitWithinByte = kStrongModeBit % kBitsPerByte;
|
| static const int kNativeBitWithinByte = kNativeBit % kBitsPerByte;
|
|
|
| static const int kClassConstructorBitsWithinByte =
|
| @@ -7288,7 +7284,6 @@ class SharedFunctionInfo: public HeapObject {
|
| #error Unknown byte ordering
|
| #endif
|
| static const int kStrictModeByteOffset = BYTE_OFFSET(kStrictModeFunction);
|
| - static const int kStrongModeByteOffset = BYTE_OFFSET(kStrongModeFunction);
|
| static const int kNativeByteOffset = BYTE_OFFSET(kNative);
|
| static const int kFunctionKindByteOffset = BYTE_OFFSET(kFunctionKind);
|
| #undef BYTE_OFFSET
|
|
|