| Index: src/objects-printer.cc
 | 
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
 | 
| index 75f03e4db35902df56fce49ad6757f1f00bd8be1..4b7e97e3f2b7ef01bf5cfdd404411a9aee0c1e3c 100644
 | 
| --- a/src/objects-printer.cc
 | 
| +++ b/src/objects-printer.cc
 | 
| @@ -570,8 +570,6 @@ void TypeFeedbackInfo::TypeFeedbackInfoPrint(FILE* out) {
 | 
|    HeapObject::PrintHeader(out, "TypeFeedbackInfo");
 | 
|    PrintF(out, " - ic_total_count: %d, ic_with_type_info_count: %d\n",
 | 
|           ic_total_count(), ic_with_type_info_count());
 | 
| -  PrintF(out, " - feedback_vector: ");
 | 
| -  feedback_vector()->FixedArrayPrint(out);
 | 
|  }
 | 
|  
 | 
|  
 | 
| @@ -900,6 +898,7 @@ void SharedFunctionInfo::SharedFunctionInfoPrint(FILE* out) {
 | 
|    PrintF(out, " - name: ");
 | 
|    name()->ShortPrint(out);
 | 
|    PrintF(out, "\n - expected_nof_properties: %d", expected_nof_properties());
 | 
| +  PrintF(out, "\n - ast_node_count: %d", ast_node_count());
 | 
|    PrintF(out, "\n - instance class name = ");
 | 
|    instance_class_name()->Print(out);
 | 
|    PrintF(out, "\n - code = ");
 | 
| @@ -927,6 +926,8 @@ void SharedFunctionInfo::SharedFunctionInfoPrint(FILE* out) {
 | 
|    PrintF(out, "\n - length = %d", length());
 | 
|    PrintF(out, "\n - optimized_code_map = ");
 | 
|    optimized_code_map()->ShortPrint(out);
 | 
| +  PrintF(out, "\n - feedback_vector = ");
 | 
| +  feedback_vector()->FixedArrayPrint(out);
 | 
|    PrintF(out, "\n");
 | 
|  }
 | 
|  
 | 
| 
 |