Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index a286830e9bb8a04e73f88419a320e74af76b3e9c..5cee2257cdafbdfca9177107a476271e79d16107 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -5425,6 +5425,7 @@ class Code: public HeapObject { |
#define IC_KIND_LIST(V) \ |
V(LOAD_IC) \ |
V(KEYED_LOAD_IC) \ |
+ V(CALL_IC) \ |
V(STORE_IC) \ |
V(KEYED_STORE_IC) \ |
V(BINARY_OP_IC) \ |
@@ -5534,6 +5535,7 @@ class Code: public HeapObject { |
inline bool is_keyed_load_stub() { return kind() == KEYED_LOAD_IC; } |
inline bool is_store_stub() { return kind() == STORE_IC; } |
inline bool is_keyed_store_stub() { return kind() == KEYED_STORE_IC; } |
+ inline bool is_call_stub() { return kind() == CALL_IC; } |
inline bool is_binary_op_stub() { return kind() == BINARY_OP_IC; } |
inline bool is_compare_ic_stub() { return kind() == COMPARE_IC; } |
inline bool is_compare_nil_ic_stub() { return kind() == COMPARE_NIL_IC; } |