| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 9b26fbcb452e9b2a745fd5b1a94a38de55c5f09d..2da7f234862a35275338fc9768f155e3e9e8b0a4 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -8986,8 +8986,7 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
|
|
|
| case Translation::UINT32_REGISTER: {
|
| int reg_code = iterator.Next();
|
| - PrintF(out,
|
| - "{input=%s (unsigned)}",
|
| + PrintF(out, "{input=%s (unsigned)}",
|
| converter.NameOfCPURegister(reg_code));
|
| break;
|
| }
|
| @@ -9030,9 +9029,11 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(FILE* out) {
|
| }
|
|
|
| case Translation::ARGUMENTS_OBJECT: {
|
| + bool args_known = iterator.Next();
|
| int args_index = iterator.Next();
|
| int args_length = iterator.Next();
|
| - PrintF(out, "{index=%d, length=%d}", args_index, args_length);
|
| + PrintF(out, "{index=%d, length=%d, known=%d}",
|
| + args_index, args_length, args_known);
|
| break;
|
| }
|
| }
|
|
|