| Index: runtime/vm/compiler.cc
|
| diff --git a/runtime/vm/compiler.cc b/runtime/vm/compiler.cc
|
| index 188b16be5e650ffd3c031484f553de6012a1f642..06e6cae3961309aa5f0b028f05f304d46aa8f89b 100644
|
| --- a/runtime/vm/compiler.cc
|
| +++ b/runtime/vm/compiler.cc
|
| @@ -348,7 +348,8 @@ static void DisassembleCode(const Function& function, bool optimized) {
|
| Smi& reason = Smi::Handle();
|
| for (intptr_t i = 0; i < deopt_table_length; ++i) {
|
| DeoptTable::GetEntry(deopt_table, i, &offset, &info, &reason);
|
| - OS::Print("0x%"Px" %s (%s)\n",
|
| + OS::Print("%4"Pd": 0x%"Px" %s (%s)\n",
|
| + i,
|
| start + offset.Value(),
|
| info.ToCString(),
|
| DeoptReasonToText(reason.Value()));
|
|
|