| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index e3a0c7ff1eeb4e36c8fcba8d5882136eff3d8096..2869f2bc0a44c60551a48ce9f649f66338c5c5f7 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4233,7 +4233,6 @@ class Code: public HeapObject {
|
| V(FUNCTION) \
|
| V(OPTIMIZED_FUNCTION) \
|
| V(STUB) \
|
| - V(COMPILED_STUB) \
|
| V(BUILTIN) \
|
| V(LOAD_IC) \
|
| V(KEYED_LOAD_IC) \
|
| @@ -4849,10 +4848,6 @@ class Map: public HeapObject {
|
| return IsFastDoubleElementsKind(elements_kind());
|
| }
|
|
|
| - inline bool has_fast_elements() {
|
| - return IsFastElementsKind(elements_kind());
|
| - }
|
| -
|
| inline bool has_non_strict_arguments_elements() {
|
| return elements_kind() == NON_STRICT_ARGUMENTS_ELEMENTS;
|
| }
|
|
|