| Index: src/objects.cc | 
| diff --git a/src/objects.cc b/src/objects.cc | 
| index f88857332f7dae8245a8c456bb715e81efdd1e80..5c091163881ceecffbfc04fc63a5c4908326a150 100644 | 
| --- a/src/objects.cc | 
| +++ b/src/objects.cc | 
| @@ -14897,7 +14897,11 @@ void Code::Disassemble(const char* name, std::ostream& os) {  // NOLINT | 
| } | 
| #ifdef OBJECT_PRINT | 
| if (!type_feedback_info()->IsUndefined(GetIsolate())) { | 
| -      TypeFeedbackInfo::cast(type_feedback_info())->TypeFeedbackInfoPrint(os); | 
| +      TypeFeedbackInfo* info = TypeFeedbackInfo::cast(type_feedback_info()); | 
| +      HeapObject::PrintHeader(os, "TypeFeedbackInfo"); | 
| +      os << "\n - ic_total_count: " << info->ic_total_count() | 
| +         << ", ic_with_type_info_count: " << info->ic_with_type_info_count() | 
| +         << ", ic_generic_count: " << info->ic_generic_count() << "\n"; | 
| os << "\n"; | 
| } | 
| #endif | 
|  |