| Index: src/objects-debug.cc
|
| diff --git a/src/objects-debug.cc b/src/objects-debug.cc
|
| index b4df6c8caf257e7999c1ad0cbbef70e8c94d9b78..7c01fe456ebe746dab67136aa4340eef36d005a2 100644
|
| --- a/src/objects-debug.cc
|
| +++ b/src/objects-debug.cc
|
| @@ -928,21 +928,6 @@ bool DescriptorArray::IsConsistentWithBackPointers(Map* current_map) {
|
| return false;
|
| }
|
| break;
|
| - case ELEMENTS_TRANSITION: {
|
| - Object* object = GetValue(i);
|
| - if (!CheckOneBackPointer(current_map, object)) {
|
| - return false;
|
| - }
|
| - if (object->IsFixedArray()) {
|
| - FixedArray* array = FixedArray::cast(object);
|
| - for (int i = 0; i < array->length(); ++i) {
|
| - if (!CheckOneBackPointer(current_map, array->get(i))) {
|
| - return false;
|
| - }
|
| - }
|
| - }
|
| - break;
|
| - }
|
| case CALLBACKS: {
|
| Object* object = GetValue(i);
|
| if (object->IsAccessorPair()) {
|
|
|