Index: runtime/vm/il_printer.cc |
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc |
index 5ce1982d89b10d7fbb2adf14db9631d5759a7c2d..1f8fe5e7e0cb31263f16a05bf8a67b63ef2c726c 100644 |
--- a/runtime/vm/il_printer.cc |
+++ b/runtime/vm/il_printer.cc |
@@ -397,6 +397,14 @@ void BinaryMintOpComp::PrintOperandsTo(BufferFormatter* f) const { |
} |
+void UnboxedDoubleBinaryOpComp::PrintOperandsTo(BufferFormatter* f) const { |
+ f->Print("%s, ", Token::Str(op_kind())); |
+ left()->PrintTo(f); |
+ f->Print(", "); |
+ right()->PrintTo(f); |
+} |
+ |
+ |
void BinaryDoubleOpComp::PrintOperandsTo(BufferFormatter* f) const { |
f->Print("%s", Token::Str(op_kind())); |
} |