Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index d6cbd4c44190eb4b3fc273b9728849816e2f6f90..c7262bc880d49bc15bd96db881887827404e0af4 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -7074,8 +7074,8 @@ class SharedFunctionInfo: public HeapObject { |
// global object. |
DECL_BOOLEAN_ACCESSORS(native) |
- // Indicate that this builtin needs to be inlined in crankshaft. |
- DECL_BOOLEAN_ACCESSORS(inline_builtin) |
+ // Indicate that this function should always be inlined in optimized code. |
+ DECL_BOOLEAN_ACCESSORS(force_inline) |
// Indicates that the function was created by the Function function. |
// Though it's anonymous, toString should treat it as if it had the name |
@@ -7353,7 +7353,7 @@ class SharedFunctionInfo: public HeapObject { |
kUsesSuperProperty, |
kHasDuplicateParameters, |
kNative, |
- kInlineBuiltin, |
+ kForceInline, |
kBoundFunction, |
kIsAnonymous, |
kNameShouldPrintAsAnonymous, |