| Index: runtime/vm/il_printer.cc
|
| diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
|
| index 181b01777cff84c71cd30d5e665e3880c6ca05d2..1e5df2c5a0d1275f51953592c4dd743d4801b4da 100644
|
| --- a/runtime/vm/il_printer.cc
|
| +++ b/runtime/vm/il_printer.cc
|
| @@ -604,6 +604,37 @@ void BinarySmiOpInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| }
|
|
|
|
|
| +void BinaryMintOpInstr::PrintTo(BufferFormatter* f) const {
|
| + Definition::PrintTo(f);
|
| + if (is_32_bit()) {
|
| + f->Print(" 32-BIT");
|
| + }
|
| +}
|
| +
|
| +
|
| +void UnaryMintOpInstr::PrintTo(BufferFormatter* f) const {
|
| + Definition::PrintTo(f);
|
| + if (is_32_bit()) {
|
| + f->Print(" 32-BIT");
|
| + }
|
| +}
|
| +
|
| +
|
| +void UnboxIntegerInstr::PrintTo(BufferFormatter* f) const {
|
| + Definition::PrintTo(f);
|
| + if (is_32_bit()) {
|
| + f->Print(" 32-BIT");
|
| + }
|
| +}
|
| +
|
| +
|
| +void ShiftMintOpInstr::PrintTo(BufferFormatter* f) const {
|
| + Definition::PrintTo(f);
|
| + if (is_32_bit()) {
|
| + f->Print(" 32-BIT");
|
| + }
|
| +}
|
| +
|
| void BinaryDoubleOpInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| f->Print("%s, ", Token::Str(op_kind()));
|
| left()->PrintTo(f);
|
|
|