Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index f1c6f04d26a2bf034c05fa95213494176436b891..3105579e28f4e3aee5b4b0235247c8a9af11ac61 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -6781,9 +6781,6 @@ 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) |
- |
// Indicates that the function was created by the Function function. |
// Though it's anonymous, toString should treat it as if it had the name |
// "anonymous". We don't set the name itself so that the system does not |
@@ -6873,9 +6870,6 @@ class SharedFunctionInfo: public HeapObject { |
set_dont_optimize(reason != kNoReason); |
} |
- // Check whether or not this function is inlineable. |
- bool IsInlineable(); |
- |
// Source size of this function. |
int SourceSize(); |
@@ -7026,7 +7020,6 @@ class SharedFunctionInfo: public HeapObject { |
kUsesArguments, |
kHasDuplicateParameters, |
kNative, |
- kInlineBuiltin, |
kBoundFunction, |
kIsAnonymous, |
kNameShouldPrintAsAnonymous, |
@@ -7253,6 +7246,9 @@ class JSFunction: public JSObject { |
// Tells whether or not the function is on the concurrent recompilation queue. |
inline bool IsInRecompileQueue(); |
+ // Check whether or not this function is inlineable. |
+ bool IsInlineable(); |
+ |
// [literals_or_bindings]: Fixed array holding either |
// the materialized literals or the bindings of a bound function. |
// |