| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index cfeecadf7b581b87006fcab43eb6963099e2e5d3..0eb315544b5f048613ccf314013ee1d3e7dc01d6 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -10420,6 +10420,7 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
|
| int ast_id = iterator.Next();
|
| int function_id = iterator.Next();
|
| unsigned height = iterator.Next();
|
| + int handler_count = iterator.Next();
|
| PrintF(out, "{ast_id=%d, function=", ast_id);
|
| if (function_id != Translation::kSelfLiteralId) {
|
| Object* function = LiteralArray()->get(function_id);
|
| @@ -10427,7 +10428,7 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
|
| } else {
|
| PrintF(out, "<self>");
|
| }
|
| - PrintF(out, ", height=%u}", height);
|
| + PrintF(out, ", height=%u, handlers=%d}", height, handler_count);
|
| break;
|
| }
|
|
|
|
|