| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index ed6841a7201537677765c30e336a954a1bb518b4..903785f96c8b89f16b6da8280bcdbd046bbe22cb 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -802,6 +802,7 @@ void TypeFeedbackVector::TypeFeedbackVectorPrint(std::ostream& os) { // NOLINT
|
| break;
|
| }
|
| case FeedbackVectorSlotKind::CREATE_CLOSURE:
|
| + case FeedbackVectorSlotKind::LITERAL:
|
| case FeedbackVectorSlotKind::GENERAL:
|
| break;
|
| case FeedbackVectorSlotKind::INVALID:
|
| @@ -1051,7 +1052,7 @@ void JSFunction::JSFunctionPrint(std::ostream& os) { // NOLINT
|
| os << "\n - async";
|
| }
|
| os << "\n - context = " << Brief(context());
|
| - os << "\n - literals = " << Brief(literals());
|
| + os << "\n - feedback vector = " << Brief(feedback_vector());
|
| os << "\n - code = " << Brief(code());
|
| JSObjectPrintBody(os, this);
|
| }
|
|
|