| Index: runtime/vm/il_printer.cc
|
| ===================================================================
|
| --- runtime/vm/il_printer.cc (revision 30464)
|
| +++ runtime/vm/il_printer.cc (working copy)
|
| @@ -365,6 +365,9 @@
|
| left()->PrintTo(f);
|
| f->Print(", ");
|
| right()->PrintTo(f);
|
| + if (needs_number_check()) {
|
| + f->Print(", with number check");
|
| + }
|
| }
|
|
|
|
|
| @@ -427,9 +430,7 @@
|
|
|
|
|
| void IfThenElseInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| - left()->PrintTo(f);
|
| - f->Print(" %s ", Token::Str(kind_));
|
| - right()->PrintTo(f);
|
| + comparison()->PrintOperandsTo(f);
|
| f->Print(" ? %" Pd " : %" Pd,
|
| if_true_,
|
| if_false_);
|
|
|