Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 795b429a924628626d87d34d973b20126a18447e..4fe899fe5f825e9cd97e0fa5e8f050a0eb58b2b8 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -4946,7 +4946,6 @@ class Code: public HeapObject { |
inline bool is_to_boolean_ic_stub(); |
inline bool is_keyed_stub(); |
inline bool is_optimized_code(); |
- inline bool is_interpreter_entry_trampoline(); |
inline bool embeds_maps_weakly(); |
inline bool IsCodeStubOrIC(); |
@@ -4955,6 +4954,10 @@ class Code: public HeapObject { |
inline void set_raw_kind_specific_flags1(int value); |
inline void set_raw_kind_specific_flags2(int value); |
+ // Testers for interpreter builtins. |
+ inline bool is_interpreter_entry_trampoline(); |
+ inline bool is_interpreter_enter_bytecode_dispatch(); |
+ |
// [is_crankshafted]: For kind STUB or ICs, tells whether or not a code |
// object was generated by either the hydrogen or the TurboFan optimizing |
// compiler (but it may not be an optimized function). |