| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 41fe7b155136aa3759f679181bcdf982b1ea11ff..fdc4a2f5dfc0243bfeb2287063d98fddb6361088 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -5002,23 +5002,6 @@ void Map::SetBackPointer(Object* value, WriteBarrierMode mode) {
|
| }
|
|
|
|
|
| -// Can either be Smi (no transitions), normal transition array, or a transition
|
| -// array with the header overwritten as a Smi (thus iterating).
|
| -TransitionArray* Map::unchecked_transition_array() {
|
| - Object* object = *HeapObject::RawField(this,
|
| - Map::kTransitionsOrBackPointerOffset);
|
| - TransitionArray* transition_array = static_cast<TransitionArray*>(object);
|
| - return transition_array;
|
| -}
|
| -
|
| -
|
| -HeapObject* Map::UncheckedPrototypeTransitions() {
|
| - ASSERT(HasTransitionArray());
|
| - ASSERT(unchecked_transition_array()->HasPrototypeTransitions());
|
| - return unchecked_transition_array()->UncheckedPrototypeTransitions();
|
| -}
|
| -
|
| -
|
| ACCESSORS(Map, code_cache, Object, kCodeCacheOffset)
|
| ACCESSORS(Map, dependent_code, DependentCode, kDependentCodeOffset)
|
| ACCESSORS(Map, constructor, Object, kConstructorOffset)
|
|
|