| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 0ab325b45ba9d2bbf780760c4f0dbe7f7f39bbf4..775f2be08813ab488330515b46116a76c01ce0c0 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -11122,7 +11122,7 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(
|
| os << "Deoptimization Input Data (deopt points = " << deopt_count << ")\n";
|
| if (0 != deopt_count) {
|
| os << " index ast id argc pc";
|
| - if (FLAG_print_code_verbose) os << "commands";
|
| + if (FLAG_print_code_verbose) os << " commands";
|
| os << "\n";
|
| }
|
| for (int i = 0; i < deopt_count; i++) {
|
| @@ -11152,7 +11152,7 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(
|
| Translation::BEGIN !=
|
| (opcode = static_cast<Translation::Opcode>(iterator.Next()))) {
|
| Vector<char> buf2 = Vector<char>::New(128);
|
| - SNPrintF(buf2, "%24s %s ", "", Translation::StringFor(opcode));
|
| + SNPrintF(buf2, "%27s %s ", "", Translation::StringFor(opcode));
|
| os << buf2.start();
|
|
|
| switch (opcode) {
|
| @@ -11278,11 +11278,11 @@ void DeoptimizationInputData::DeoptimizationInputDataPrint(
|
| if (return_address_patch_count != 0) {
|
| os << "Return address patch data (count = " << return_address_patch_count
|
| << ")\n";
|
| - os << "index pc patched_pc\n";
|
| + os << " index pc patched_pc\n";
|
| }
|
| for (int i = 0; i < return_address_patch_count; i++) {
|
| Vector<char> buf = Vector<char>::New(128);
|
| - SNPrintF(buf, "%6d %6d %10d", i, ReturnAddressPc(i)->value(),
|
| + SNPrintF(buf, "%6d %6d %12d\n", i, ReturnAddressPc(i)->value(),
|
| PatchedAddressPc(i)->value());
|
| os << buf.start();
|
| }
|
|
|