Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index b76d3357a32e9f4c2fc3750895f75471d3fd5909..1cf6921952065dbfa4066f887ccd73ca96db2d8f 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -7458,9 +7458,6 @@ class SharedFunctionInfo: public HeapObject { |
// which does not change this flag). |
DECL_BOOLEAN_ACCESSORS(is_anonymous_expression) |
- // Is this a function or top-level/eval code. |
- DECL_BOOLEAN_ACCESSORS(is_function) |
- |
// Indicates that code for this function must be compiled through the |
// Ignition / TurboFan pipeline, and is unsupported by |
// FullCodegen / Crankshaft. |
@@ -7760,10 +7757,11 @@ class SharedFunctionInfo: public HeapObject { |
kIsAsmFunction, |
kIsAnonymousExpression, |
kNameShouldPrintAsAnonymous, |
- kIsFunction, |
kMustUseIgnitionTurbo, |
kDontFlush, |
kIsDeclaration, |
+ |
+ kUnused, // unused. |
// byte 2 |
kFunctionKind, |
// rest of byte 2 and first two bits of byte 3 are used by FunctionKind |