Index: runtime/vm/il_printer.cc |
diff --git a/runtime/vm/il_printer.cc b/runtime/vm/il_printer.cc |
index db7cee14e92d73eeba92341b62d096b273f8b890..391cbf75fba8ce6442ad44e97ef60acf2d396c02 100644 |
--- a/runtime/vm/il_printer.cc |
+++ b/runtime/vm/il_printer.cc |
@@ -573,6 +573,12 @@ void MergedMathInstr::PrintOperandsTo(BufferFormatter* f) const { |
} |
+void ExtractNthOutputInstr::PrintOperandsTo(BufferFormatter* f) const { |
+ f->Print("Extract %" Pd " from ", index()); |
+ Definition::PrintOperandsTo(f); |
+} |
+ |
+ |
void BinarySmiOpInstr::PrintTo(BufferFormatter* f) const { |
Definition::PrintTo(f); |
f->Print(" %co", overflow_ ? '+' : '-'); |