Chromium Code Reviews| Index: runtime/vm/il_printer.cc |
| =================================================================== |
| --- runtime/vm/il_printer.cc (revision 12897) |
| +++ runtime/vm/il_printer.cc (working copy) |
| @@ -510,6 +510,14 @@ |
| } |
| +void UnboxedMintBinaryOpInstr::PrintOperandsTo(BufferFormatter* f) const { |
| + f->Print("%s, ", Token::Str(op_kind())); |
| + left()->PrintTo(f); |
| + f->Print(", "); |
| + right()->PrintTo(f); |
| +} |
| + |
| + |
| void UnarySmiOpInstr::PrintOperandsTo(BufferFormatter* f) const { |
| f->Print("%s, ", Token::Str(op_kind())); |
| value()->PrintTo(f); |