| Index: src/objects-printer.cc | 
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc | 
| index c9fdcd94ddf7f1a2bea9e7c4d0c8a5a9b602e606..20365592c3052514bd6d9c38b52c1d4d3f3adac1 100644 | 
| --- a/src/objects-printer.cc | 
| +++ b/src/objects-printer.cc | 
| @@ -63,9 +63,6 @@ void HeapObject::HeapObjectPrint(std::ostream& os) {  // NOLINT | 
| case FIXED_DOUBLE_ARRAY_TYPE: | 
| FixedDoubleArray::cast(this)->FixedDoubleArrayPrint(os); | 
| break; | 
| -    case CONSTANT_POOL_ARRAY_TYPE: | 
| -      ConstantPoolArray::cast(this)->ConstantPoolArrayPrint(os); | 
| -      break; | 
| case FIXED_ARRAY_TYPE: | 
| FixedArray::cast(this)->FixedArrayPrint(os); | 
| break; | 
| @@ -502,43 +499,6 @@ void FixedDoubleArray::FixedDoubleArrayPrint(std::ostream& os) {  // NOLINT | 
| } | 
|  | 
|  | 
| -void ConstantPoolArray::ConstantPoolArrayPrint(std::ostream& os) {  // NOLINT | 
| -  HeapObject::PrintHeader(os, "ConstantPoolArray"); | 
| -  os << " - length: " << length(); | 
| -  for (int i = 0; i <= last_index(INT32, SMALL_SECTION); i++) { | 
| -    if (i < last_index(INT64, SMALL_SECTION)) { | 
| -      os << "\n  [" << i << "]: double: " << get_int64_entry_as_double(i); | 
| -    } else if (i <= last_index(CODE_PTR, SMALL_SECTION)) { | 
| -      os << "\n  [" << i << "]: code target pointer: " | 
| -         << reinterpret_cast<void*>(get_code_ptr_entry(i)); | 
| -    } else if (i <= last_index(HEAP_PTR, SMALL_SECTION)) { | 
| -      os << "\n  [" << i << "]: heap pointer: " | 
| -         << reinterpret_cast<void*>(get_heap_ptr_entry(i)); | 
| -    } else if (i <= last_index(INT32, SMALL_SECTION)) { | 
| -      os << "\n  [" << i << "]: int32: " << get_int32_entry(i); | 
| -    } | 
| -  } | 
| -  if (is_extended_layout()) { | 
| -    os << "\n  Extended section:"; | 
| -    for (int i = first_extended_section_index(); | 
| -         i <= last_index(INT32, EXTENDED_SECTION); i++) { | 
| -      if (i < last_index(INT64, EXTENDED_SECTION)) { | 
| -        os << "\n  [" << i << "]: double: " << get_int64_entry_as_double(i); | 
| -      } else if (i <= last_index(CODE_PTR, EXTENDED_SECTION)) { | 
| -        os << "\n  [" << i << "]: code target pointer: " | 
| -           << reinterpret_cast<void*>(get_code_ptr_entry(i)); | 
| -      } else if (i <= last_index(HEAP_PTR, EXTENDED_SECTION)) { | 
| -        os << "\n  [" << i << "]: heap pointer: " | 
| -           << reinterpret_cast<void*>(get_heap_ptr_entry(i)); | 
| -      } else if (i <= last_index(INT32, EXTENDED_SECTION)) { | 
| -        os << "\n  [" << i << "]: int32: " << get_int32_entry(i); | 
| -      } | 
| -    } | 
| -  } | 
| -  os << "\n"; | 
| -} | 
| - | 
| - | 
| void JSValue::JSValuePrint(std::ostream& os) {  // NOLINT | 
| HeapObject::PrintHeader(os, "ValueObject"); | 
| value()->Print(os); | 
|  |