| Index: runtime/vm/il_printer.cc
|
| diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc
|
| index 1040f565e893f374716fa45e665feec937d3b5de..fcfe8835bb7775620c592b756bf1f19b23cd1f62 100644
|
| --- a/runtime/vm/il_printer.cc
|
| +++ b/runtime/vm/il_printer.cc
|
| @@ -800,6 +800,19 @@ void Float64x2OneArgInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| }
|
|
|
|
|
| +void Int32x4ConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| + f->Print("Int32x4(");
|
| + value0()->PrintTo(f);
|
| + f->Print(", ");
|
| + value1()->PrintTo(f);
|
| + f->Print(", ");
|
| + value2()->PrintTo(f);
|
| + f->Print(", ");
|
| + value3()->PrintTo(f);
|
| + f->Print(")");
|
| +}
|
| +
|
| +
|
| void Int32x4BoolConstructorInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| f->Print("Int32x4.bool(");
|
| value0()->PrintTo(f);
|
|
|