| Index: runtime/vm/il_printer.cc
|
| diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
|
| index c0dffcc575e169fa9d8198fb75d4b86653313f8d..180850907cc3920d56fdd6792ca74f0835021d89 100644
|
| --- a/runtime/vm/il_printer.cc
|
| +++ b/runtime/vm/il_printer.cc
|
| @@ -634,6 +634,14 @@ void Float32x4ConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| }
|
|
|
|
|
| +void Float32x4ComparisonInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| + f->Print("Float32x4 Comparison %d", op_kind());
|
| + left()->PrintTo(f);
|
| + f->Print(", ");
|
| + right()->PrintTo(f);
|
| +}
|
| +
|
| +
|
| void BinaryMintOpInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| f->Print("%s, ", Token::Str(op_kind()));
|
| left()->PrintTo(f);
|
|
|