Index: src/objects-printer.cc |
diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
index bc8c7c7b61953aea9d741b0cb5d766059eaf398c..6cf1798606623964b5829eb2c7494da317b07dc3 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); |
} |
@@ -878,6 +876,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"); |
} |