Chromium Code Reviews| Index: src/objects-printer.cc |
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
| index fb273d592790b625babae029ba1a96d1967874c3..cba601b3fda554c3e34e5cf248bb49fec38574a1 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()->ShortPrint(out); |
|
Benedikt Meurer
2014/03/05 07:22:56
Why don't you use FixedArrayPrint() here?
mvstanton
2014/03/05 08:48:02
good idea, thx.
|
| PrintF(out, "\n"); |
| } |