| Index: runtime/vm/il_printer.cc
|
| diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
|
| index db7cee14e92d73eeba92341b62d096b273f8b890..9c3c713235ce99761aaa92e89058e97f74bf45c2 100644
|
| --- a/runtime/vm/il_printer.cc
|
| +++ b/runtime/vm/il_printer.cc
|
| @@ -573,6 +573,18 @@ void MergedMathInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| }
|
|
|
|
|
| +void ExtractNthOutputInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| + f->Print("Extract %" Pd " from ", index());
|
| + Definition::PrintOperandsTo(f);
|
| +}
|
| +
|
| +
|
| +void MergedMath2Instr::PrintOperandsTo(BufferFormatter* f) const {
|
| + f->Print("'%s', ", MergedMath2Instr::KindToCString(kind()));
|
| + Definition::PrintOperandsTo(f);
|
| +}
|
| +
|
| +
|
| void BinarySmiOpInstr::PrintTo(BufferFormatter* f) const {
|
| Definition::PrintTo(f);
|
| f->Print(" %co", overflow_ ? '+' : '-');
|
|
|