| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 158de1452bd2b50e4e081950a0f1d276091cffc8..7736bebd89981f99d33e82ff20bd0420c6f387f8 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -8263,6 +8263,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);
|
| @@ -8270,7 +8271,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;
|
| }
|
|
|
|
|