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