| Index: runtime/vm/il_printer.cc
|
| ===================================================================
|
| --- runtime/vm/il_printer.cc (revision 30526)
|
| +++ runtime/vm/il_printer.cc (working copy)
|
| @@ -579,6 +579,12 @@
|
| }
|
|
|
|
|
| +void MergedMathInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| + f->Print("'%s', ", MergedMathInstr::KindToCString(kind()));
|
| + Definition::PrintOperandsTo(f);
|
| +}
|
| +
|
| +
|
| void BinarySmiOpInstr::PrintTo(BufferFormatter* f) const {
|
| Definition::PrintTo(f);
|
| f->Print(" %co", overflow_ ? '+' : '-');
|
|
|