Index: src/objects-printer.cc |
diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
index 9ea060f5ed81f7abcba5a7617de45490ae59480d..9d440aa0906efb7f31fded64fb5a4a9de2dce8bf 100644 |
--- a/src/objects-printer.cc |
+++ b/src/objects-printer.cc |
@@ -1098,9 +1098,10 @@ void AllocationSite::AllocationSitePrint(FILE* out) { |
HeapObject::PrintHeader(out, "AllocationSite"); |
PrintF(out, " - weak_next: "); |
weak_next()->ShortPrint(out); |
- PrintF(out, "\n"); |
+ PrintF(out, "\n - dependent code: "); |
+ dependent_code()->ShortPrint(out); |
- PrintF(out, " - transition_info: "); |
+ PrintF(out, "\n - transition_info: "); |
if (transition_info()->IsCell()) { |
Cell* cell = Cell::cast(transition_info()); |
Object* cell_contents = cell->value(); |