| Index: vm/il_printer.cc
|
| ===================================================================
|
| --- vm/il_printer.cc (revision 9254)
|
| +++ vm/il_printer.cc (working copy)
|
| @@ -44,6 +44,11 @@
|
| PrintInstruction(current);
|
| current = current->StraightLineSuccessor();
|
| }
|
| + BlockEntryInstr* successor =
|
| + (current == NULL) ? NULL : current->AsBlockEntry();
|
| + if (successor != NULL) {
|
| + OS::Print(" goto %d", successor->block_id());
|
| + }
|
| OS::Print("\n");
|
| }
|
| }
|
| @@ -407,11 +412,6 @@
|
| }
|
|
|
|
|
| -void GotoInstr::PrintTo(BufferFormatter* f) const {
|
| - f->Print(" goto %d", successor_->block_id());
|
| -}
|
| -
|
| -
|
| void ParallelMoveInstr::PrintTo(BufferFormatter* f) const {
|
| UNIMPLEMENTED();
|
| }
|
| @@ -531,6 +531,11 @@
|
| PrintInstruction(current);
|
| current = current->StraightLineSuccessor();
|
| }
|
| + BlockEntryInstr* successor =
|
| + (current == NULL) ? NULL : current->AsBlockEntry();
|
| + if (successor != NULL) {
|
| + Print("0 0 _ Goto B%d <|@\n", successor->block_id());
|
| + }
|
| END("HIR");
|
| }
|
| END("block");
|
| @@ -639,11 +644,6 @@
|
| }
|
|
|
|
|
| -void GotoInstr::PrintToVisualizer(BufferFormatter* f) const {
|
| - f->Print("_ Goto (B%d)", successor_->block_id());
|
| -}
|
| -
|
| -
|
| void ParallelMoveInstr::PrintToVisualizer(BufferFormatter* f) const {
|
| UNIMPLEMENTED();
|
| }
|
|
|