| Index: runtime/vm/il_printer.cc
|
| diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
|
| index 8352bdaff67925419459ac5e6ae6388def243633..5b99070d6058e62e7087052b776f87713a83582d 100644
|
| --- a/runtime/vm/il_printer.cc
|
| +++ b/runtime/vm/il_printer.cc
|
| @@ -386,6 +386,9 @@ void BranchInstr::PrintTo(BufferFormatter* f) const {
|
| f->Print(" %s ", DebugName());
|
| f->Print("if ");
|
| value()->PrintTo(f);
|
| + if (is_fused_with_comparison()) {
|
| + f->Print(" (fused)");
|
| + }
|
| f->Print(" goto (%d, %d)",
|
| true_successor()->block_id(),
|
| false_successor()->block_id());
|
|
|