| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 6512c607799dd34fd71e69aa8e656681ff3f5e42..f593bff63b72b03c83ddac08357a1df4e7c3fb09 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -1385,7 +1385,7 @@ void JSObject::JSObjectShortPrint(StringStream* accumulator) {
|
| global_object ? "Global Object: " : "",
|
| vowel ? "n" : "");
|
| accumulator->Put(str);
|
| - accumulator->Add(" with %smap 0x%p",
|
| + accumulator->Add(" with %smap %p",
|
| map_of_this->is_deprecated() ? "deprecated " : "",
|
| map_of_this);
|
| printed = true;
|
| @@ -10538,11 +10538,8 @@ 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, known=%d}",
|
| - args_index, args_length, args_known);
|
| + PrintF(out, "{length=%d}", args_length);
|
| break;
|
| }
|
| }
|
|
|