| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 0d803590d7cca1761b0081eb65348ebfb3abb42f..db324d0f10dac74b1c71e40ed6314b2754c3dc05 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -1119,9 +1119,9 @@ void TypeSwitchInfo::TypeSwitchInfoPrint(FILE* out) {
|
|
|
| void AllocationSite::AllocationSitePrint(FILE* out) {
|
| HeapObject::PrintHeader(out, "AllocationSite");
|
| - PrintF(out, " - payload: ");
|
| - if (payload()->IsCell()) {
|
| - Cell* cell = Cell::cast(payload());
|
| + PrintF(out, " - transition_info: ");
|
| + if (transition_info()->IsCell()) {
|
| + Cell* cell = Cell::cast(transition_info());
|
| Object* cell_contents = cell->value();
|
| if (cell_contents->IsSmi()) {
|
| ElementsKind kind = static_cast<ElementsKind>(
|
| @@ -1131,15 +1131,15 @@ void AllocationSite::AllocationSitePrint(FILE* out) {
|
| PrintF(out, "\n");
|
| return;
|
| }
|
| - } else if (payload()->IsJSArray()) {
|
| + } else if (transition_info()->IsJSArray()) {
|
| PrintF(out, "Array literal ");
|
| - payload()->ShortPrint(out);
|
| + transition_info()->ShortPrint(out);
|
| PrintF(out, "\n");
|
| return;
|
| }
|
|
|
| - PrintF(out, "unknown payload ");
|
| - payload()->ShortPrint(out);
|
| + PrintF(out, "unknown transition_info");
|
| + transition_info()->ShortPrint(out);
|
| PrintF(out, "\n");
|
| }
|
|
|
|
|