| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 518167cc51e0d63216056f51b5508fdd94424b0e..e287691532f6b0b710eed0f1186c240464e8aa73 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -566,8 +566,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);
|
| }
|
|
|
|
|
| @@ -881,6 +879,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");
|
| }
|
|
|
|
|