Index: src/objects-printer.cc |
diff --git a/src/objects-printer.cc b/src/objects-printer.cc |
index 0b8fdfda0309990ea0400781e1c681c1aa1fe604..26a709848ef1ad53977aa3cb1ef29eb2d06110a8 100644 |
--- a/src/objects-printer.cc |
+++ b/src/objects-printer.cc |
@@ -1100,9 +1100,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(); |