| Index: runtime/vm/il_printer.cc
|
| diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
|
| index bf5059678d78646c5ba6e7231494621b9172accc..408c26eadfd08895f7fdb11d50bf5361e4b6acbd 100644
|
| --- a/runtime/vm/il_printer.cc
|
| +++ b/runtime/vm/il_printer.cc
|
| @@ -709,7 +709,7 @@ void InvokeMathCFunctionInstr::PrintOperandsTo(BufferFormatter* f) const {
|
|
|
| void GraphEntryInstr::PrintTo(BufferFormatter* f) const {
|
| const GrowableArray<Definition*>& defns = initial_definitions_;
|
| - f->Print("B%"Pd"[graph]", block_id());
|
| + f->Print("B%"Pd"[graph]:%"Pd, block_id(), GetDeoptId());
|
| if (defns.length() > 0) {
|
| f->Print(" {");
|
| for (intptr_t i = 0; i < defns.length(); ++i) {
|
| @@ -723,7 +723,7 @@ void GraphEntryInstr::PrintTo(BufferFormatter* f) const {
|
|
|
|
|
| void JoinEntryInstr::PrintTo(BufferFormatter* f) const {
|
| - f->Print("B%"Pd"[join] pred(", block_id());
|
| + f->Print("B%"Pd"[join]:%"Pd" pred(", block_id(), GetDeoptId());
|
| for (intptr_t i = 0; i < predecessors_.length(); ++i) {
|
| if (i > 0) f->Print(", ");
|
| f->Print("B%"Pd, predecessors_[i]->block_id());
|
| @@ -774,7 +774,7 @@ void ParameterInstr::PrintOperandsTo(BufferFormatter* f) const {
|
|
|
|
|
| void TargetEntryInstr::PrintTo(BufferFormatter* f) const {
|
| - f->Print("B%"Pd"[target]", block_id());
|
| + f->Print("B%"Pd"[target]:%"Pd, block_id(), GetDeoptId());
|
| if (HasParallelMove()) {
|
| f->Print(" ");
|
| parallel_move()->PrintTo(f);
|
|
|